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

Unified Diff: content/public/common/content_switches.cc

Issue 1071173002: Use command line to signal whether a child process was passed V8 snapshot files via file descriptor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8_ext_cast
Patch Set: Created 5 years, 8 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/public/common/content_switches.h ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 7e5471aa886ad8ac40d4cdc14b82f28c240d7c88..545f0c95368467f61e0df96abc017c8fa16d48fb 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -397,6 +397,14 @@ const char kEnablePushMessagingHasPermission[] =
// Set options to cache V8 data. (off, preparse data, or code)
const char kV8CacheOptions[] = "v8-cache-options";
+// Signals that the V8 natives file has been transfered to the child process
+// by a file descriptor.
+const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd";
+
+// Signals that the V8 startup snapshot file has been transfered to the child
+// process by a file descriptor.
+const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd";
James Cook 2015/04/09 16:27:08 Is it ever valid to pass just one of these files a
rmcilroy 2015/04/09 22:14:59 Currently we will always pass both files, however
+
// Enables the CSS multicol implementation that uses the regions implementation.
const char kEnableRegionBasedColumns[] =
"enable-region-based-columns";
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698