| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 const char kV8CacheOptions[] = "v8-cache-options"; | 418 const char kV8CacheOptions[] = "v8-cache-options"; |
| 419 | 419 |
| 420 // Signals that the V8 natives file has been transfered to the child process | 420 // Signals that the V8 natives file has been transfered to the child process |
| 421 // by a file descriptor. | 421 // by a file descriptor. |
| 422 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 422 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
| 423 | 423 |
| 424 // Signals that the V8 startup snapshot file has been transfered to the child | 424 // Signals that the V8 startup snapshot file has been transfered to the child |
| 425 // process by a file descriptor. | 425 // process by a file descriptor. |
| 426 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; | 426 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; |
| 427 | 427 |
| 428 // Set strategies to cache V8 data in CacheStorage. (off, normal, or aggressive) |
| 429 const char kV8CacheStrategiesForCacheStorage[] = |
| 430 "v8-cache-strategies-for-cache-storage"; |
| 431 |
| 428 // Cause the OS X sandbox write to syslog every time an access to a resource | 432 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 429 // is denied by the sandbox. | 433 // is denied by the sandbox. |
| 430 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 434 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 431 | 435 |
| 432 // Enables the Skia benchmarking extension | 436 // Enables the Skia benchmarking extension |
| 433 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 437 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 434 | 438 |
| 435 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 439 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
| 436 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 440 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
| 437 | 441 |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1025 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1022 | 1026 |
| 1023 // Enables the exporting of the tracing events to ETW. This is only supported on | 1027 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1024 // Windows Vista and later. | 1028 // Windows Vista and later. |
| 1025 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1029 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1026 #endif | 1030 #endif |
| 1027 | 1031 |
| 1028 // Don't dump stuff here, follow the same order as the header. | 1032 // Don't dump stuff here, follow the same order as the header. |
| 1029 | 1033 |
| 1030 } // namespace switches | 1034 } // namespace switches |
| OLD | NEW |