diff options
Diffstat (limited to 'content/public/browser/utility_process_host.h')
-rw-r--r-- | content/public/browser/utility_process_host.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/public/browser/utility_process_host.h b/content/public/browser/utility_process_host.h index 1f027a8..c39c76e 100644 --- a/content/public/browser/utility_process_host.h +++ b/content/public/browser/utility_process_host.h @@ -61,6 +61,11 @@ class UtilityProcessHost : public IPC::Sender, // Make the process run without a sandbox. virtual void DisableSandbox() = 0; +#if defined(OS_WIN) + // Make the process run elevated. + virtual void ElevatePrivileges() = 0; +#endif + // Returns information about the utility child process. virtual const ChildProcessData& GetData() = 0; |