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

Unified Diff: content/public/common/main_function_params.h

Issue 333823002: Apply renderer sandbox to utility processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comment artifact Created 6 years, 6 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
« no previous file with comments | « content/content_common.gypi ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/main_function_params.h
diff --git a/content/public/common/main_function_params.h b/content/public/common/main_function_params.h
index 8a2b826acd82af22c11cfdcb3443b2c3067cc6aa..e2756e7c098b7784dc21de0f07fc39face0b6851 100644
--- a/content/public/common/main_function_params.h
+++ b/content/public/common/main_function_params.h
@@ -33,6 +33,8 @@ struct MainFunctionParams {
sandbox_info(NULL),
#elif defined(OS_MACOSX)
autorelease_pool(NULL),
+#elif defined(OS_POSIX) && !defined(OS_ANDROID)
+ zygote_child(false),
#endif
ui_task(NULL) {
}
@@ -43,6 +45,8 @@ struct MainFunctionParams {
sandbox::SandboxInterfaceInfo* sandbox_info;
#elif defined(OS_MACOSX)
base::mac::ScopedNSAutoreleasePool* autorelease_pool;
+#elif defined(OS_POSIX) && !defined(OS_ANDROID)
+ bool zygote_child;
#endif
// Used by InProcessBrowserTest. If non-null BrowserMain schedules this
« no previous file with comments | « content/content_common.gypi ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698