Index: content/browser/browser_child_process_host_impl.h |
diff --git a/content/browser/browser_child_process_host_impl.h b/content/browser/browser_child_process_host_impl.h |
index 6345595a14e275790c96c67c0fec7456ebf726e0..4845c6c2366ac22ec30bae019033d59c58b0881d 100644 |
--- a/content/browser/browser_child_process_host_impl.h |
+++ b/content/browser/browser_child_process_host_impl.h |
@@ -42,6 +42,12 @@ class CONTENT_EXPORT BrowserChildProcessHostImpl |
// BrowserChildProcessHost implementation: |
virtual bool Send(IPC::Message* message) OVERRIDE; |
+#if defined(OS_WIN) |
+ virtual void Launch( |
+ SandboxedProcessLauncherDelegate* delegate, |
+ bool run_elevated, |
+ CommandLine* cmd_line); |
+#endif |
virtual void Launch( |
#if defined(OS_WIN) |
SandboxedProcessLauncherDelegate* delegate, |
@@ -59,7 +65,7 @@ class CONTENT_EXPORT BrowserChildProcessHostImpl |
// Returns the handle of the child process. This can be called only after |
// OnProcessLaunched is called or it will be invalid and may crash. |
- base::ProcessHandle GetHandle() const; |
+ virtual base::ProcessHandle GetHandle() const; |
// Removes this host from the host list. Calls ChildProcessHost::ForceShutdown |
void ForceShutdown(); |