Index: content/browser/utility_process_host_impl.h |
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h |
index 039e20f8c509c7487985535af442eada990adc05..98c58f627556cd753df7323762698f3cbe914e94 100644 |
--- a/content/browser/utility_process_host_impl.h |
+++ b/content/browser/utility_process_host_impl.h |
@@ -40,6 +40,7 @@ class CONTENT_EXPORT UtilityProcessHostImpl |
virtual void SetExposedDir(const base::FilePath& dir) OVERRIDE; |
virtual void EnableMDns() OVERRIDE; |
virtual void DisableSandbox() OVERRIDE; |
+ virtual void ElevatePrivileges() OVERRIDE; |
virtual void EnableZygote() OVERRIDE; |
virtual const ChildProcessData& GetData() OVERRIDE; |
#if defined(OS_POSIX) |
@@ -72,6 +73,9 @@ class CONTENT_EXPORT UtilityProcessHostImpl |
// Whether to pass switches::kNoSandbox to the child. |
bool no_sandbox_; |
+ // Whether to pass switches::kNoSandbox to the child. |
mef
2013/12/10 15:25:18
wrong comment.
|
+ bool run_elevated_; |
+ |
// Flags defined in ChildProcessHost with which to start the process. |
int child_flags_; |