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

Side by Side 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: Fix compile error 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // Enables payloads for received push messages when using the W3C Push API. 390 // Enables payloads for received push messages when using the W3C Push API.
391 const char kEnablePushMessagePayload[] = "enable-push-message-payload"; 391 const char kEnablePushMessagePayload[] = "enable-push-message-payload";
392 392
393 // Enable hasPermission() method of the W3C Push API. 393 // Enable hasPermission() method of the W3C Push API.
394 const char kEnablePushMessagingHasPermission[] = 394 const char kEnablePushMessagingHasPermission[] =
395 "enable-push-messaging-has-permission"; 395 "enable-push-messaging-has-permission";
396 396
397 // Set options to cache V8 data. (off, preparse data, or code) 397 // Set options to cache V8 data. (off, preparse data, or code)
398 const char kV8CacheOptions[] = "v8-cache-options"; 398 const char kV8CacheOptions[] = "v8-cache-options";
399 399
400 // Signals that the V8 natives file has been transfered to the child process
401 // by a file descriptor.
402 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd";
403
404 // Signals that the V8 startup snapshot file has been transfered to the child
405 // process by a file descriptor.
406 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd";
407
400 // Enables the CSS multicol implementation that uses the regions implementation. 408 // Enables the CSS multicol implementation that uses the regions implementation.
401 const char kEnableRegionBasedColumns[] = 409 const char kEnableRegionBasedColumns[] =
402 "enable-region-based-columns"; 410 "enable-region-based-columns";
403 411
404 // Cause the OS X sandbox write to syslog every time an access to a resource 412 // Cause the OS X sandbox write to syslog every time an access to a resource
405 // is denied by the sandbox. 413 // is denied by the sandbox.
406 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 414 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
407 415
408 // Enables seccomp-bpf support for Android. Requires experimental kernel 416 // Enables seccomp-bpf support for Android. Requires experimental kernel
409 // support. <http://crbug.com/166704> 417 // support. <http://crbug.com/166704>
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 // clashes between different instances of Chrome. 982 // clashes between different instances of Chrome.
975 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; 983 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix";
976 #endif 984 #endif
977 985
978 // Enables the use of NPAPI plugins. 986 // Enables the use of NPAPI plugins.
979 const char kEnableNpapi[] = "enable-npapi"; 987 const char kEnableNpapi[] = "enable-npapi";
980 988
981 // Don't dump stuff here, follow the same order as the header. 989 // Don't dump stuff here, follow the same order as the header.
982 990
983 } // namespace switches 991 } // namespace switches
OLDNEW
« 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