| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 428 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
| 429 | 429 |
| 430 // Signals that the V8 startup snapshot file has been transfered to the child | 430 // Signals that the V8 startup snapshot file has been transfered to the child |
| 431 // process by a file descriptor. | 431 // process by a file descriptor. |
| 432 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; | 432 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; |
| 433 | 433 |
| 434 // Set strategies to cache V8 data in CacheStorage. (off, normal, or aggressive) | 434 // Set strategies to cache V8 data in CacheStorage. (off, normal, or aggressive) |
| 435 const char kV8CacheStrategiesForCacheStorage[] = | 435 const char kV8CacheStrategiesForCacheStorage[] = |
| 436 "v8-cache-strategies-for-cache-storage"; | 436 "v8-cache-strategies-for-cache-storage"; |
| 437 | 437 |
| 438 // Enables GPU benchmarking extension APIs. |
| 439 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; |
| 440 |
| 438 // Cause the OS X sandbox write to syslog every time an access to a resource | 441 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 439 // is denied by the sandbox. | 442 // is denied by the sandbox. |
| 440 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 443 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 441 | 444 |
| 442 // Enables the Skia benchmarking extension | 445 // Enables the Skia benchmarking extension |
| 443 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 446 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 444 | 447 |
| 445 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 448 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
| 446 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 449 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
| 447 | 450 |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1043 | 1046 |
| 1044 // Enables the exporting of the tracing events to ETW. This is only supported on | 1047 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1045 // Windows Vista and later. | 1048 // Windows Vista and later. |
| 1046 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1047 #endif | 1050 #endif |
| 1048 | 1051 |
| 1049 // Don't dump stuff here, follow the same order as the header. | 1052 // Don't dump stuff here, follow the same order as the header. |
| 1050 | 1053 |
| 1051 } // namespace switches | 1054 } // namespace switches |
| OLD | NEW |