Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Unified Diff: content/browser/child_process_launcher.h

Issue 98603007: Launches a privileged utility process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleans up ChildProcessLauncher implementations. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/child_process_launcher.h
diff --git a/content/browser/child_process_launcher.h b/content/browser/child_process_launcher.h
index 7ce780551f462f9c458b730b9ed0ef3a1cadd03c..965a914e5245b30647952ee197bd36df03dcf452 100644
--- a/content/browser/child_process_launcher.h
+++ b/content/browser/child_process_launcher.h
@@ -27,6 +27,8 @@ class CONTENT_EXPORT ChildProcessLauncher {
// constructed on.
virtual void OnProcessLaunched() = 0;
+ virtual void OnProcessLaunchFailed() {};
+
protected:
virtual ~Client() {}
};
@@ -39,6 +41,7 @@ class CONTENT_EXPORT ChildProcessLauncher {
ChildProcessLauncher(
#if defined(OS_WIN)
SandboxedProcessLauncherDelegate* delegate,
+ bool launch_elevated,
#elif defined(OS_POSIX)
bool use_zygote,
const base::EnvironmentMap& environ,

Powered by Google App Engine
This is Rietveld 408576698