| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 const char kV8CacheOptions[] = "v8-cache-options"; | 395 const char kV8CacheOptions[] = "v8-cache-options"; |
| 396 | 396 |
| 397 // Signals that the V8 natives file has been transfered to the child process | 397 // Signals that the V8 natives file has been transfered to the child process |
| 398 // by a file descriptor. | 398 // by a file descriptor. |
| 399 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 399 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
| 400 | 400 |
| 401 // Signals that the V8 startup snapshot file has been transfered to the child | 401 // Signals that the V8 startup snapshot file has been transfered to the child |
| 402 // process by a file descriptor. | 402 // process by a file descriptor. |
| 403 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; | 403 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; |
| 404 | 404 |
| 405 // Enables the CSS multicol implementation that uses the regions implementation. | |
| 406 const char kEnableRegionBasedColumns[] = | |
| 407 "enable-region-based-columns"; | |
| 408 | |
| 409 // Cause the OS X sandbox write to syslog every time an access to a resource | 405 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 410 // is denied by the sandbox. | 406 // is denied by the sandbox. |
| 411 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 407 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 412 | 408 |
| 413 // Enables seccomp-bpf support for Android. Requires experimental kernel | 409 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 414 // support. <http://crbug.com/166704> | 410 // support. <http://crbug.com/166704> |
| 415 const char kEnableSeccompFilterSandbox[] = | 411 const char kEnableSeccompFilterSandbox[] = |
| 416 "enable-seccomp-filter-sandbox"; | 412 "enable-seccomp-filter-sandbox"; |
| 417 | 413 |
| 418 // Enables the Skia benchmarking extension | 414 // Enables the Skia benchmarking extension |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 // Windows Vista and later. | 990 // Windows Vista and later. |
| 995 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 991 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 996 #endif | 992 #endif |
| 997 | 993 |
| 998 // Enables the use of NPAPI plugins. | 994 // Enables the use of NPAPI plugins. |
| 999 const char kEnableNpapi[] = "enable-npapi"; | 995 const char kEnableNpapi[] = "enable-npapi"; |
| 1000 | 996 |
| 1001 // Don't dump stuff here, follow the same order as the header. | 997 // Don't dump stuff here, follow the same order as the header. |
| 1002 | 998 |
| 1003 } // namespace switches | 999 } // namespace switches |
| OLD | NEW |