Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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"; | |
|
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
| |
| 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 Loading... | |
| 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 |
| OLD | NEW |