| 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 427 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
| 428 | 428 |
| 429 // Signals that the V8 startup snapshot file has been transfered to the child | 429 // Signals that the V8 startup snapshot file has been transfered to the child |
| 430 // process by a file descriptor. | 430 // process by a file descriptor. |
| 431 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; | 431 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; |
| 432 | 432 |
| 433 // Cause the OS X sandbox write to syslog every time an access to a resource | 433 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 434 // is denied by the sandbox. | 434 // is denied by the sandbox. |
| 435 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 435 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 436 | 436 |
| 437 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | |
| 438 const char kEnableScrollAnchoring[] = "enable-scroll-anchoring"; | |
| 439 | |
| 440 // Enables the Skia benchmarking extension | 437 // Enables the Skia benchmarking extension |
| 441 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 438 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 442 | 439 |
| 443 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 440 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
| 444 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 441 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
| 445 | 442 |
| 446 // On platforms that support it, enables smooth scroll animation. | 443 // On platforms that support it, enables smooth scroll animation. |
| 447 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 444 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 448 | 445 |
| 449 // Enable spatial navigation | 446 // Enable spatial navigation |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1023 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1027 | 1024 |
| 1028 // Enables the exporting of the tracing events to ETW. This is only supported on | 1025 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1029 // Windows Vista and later. | 1026 // Windows Vista and later. |
| 1030 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1027 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1031 #endif | 1028 #endif |
| 1032 | 1029 |
| 1033 // Don't dump stuff here, follow the same order as the header. | 1030 // Don't dump stuff here, follow the same order as the header. |
| 1034 | 1031 |
| 1035 } // namespace switches | 1032 } // namespace switches |
| OLD | NEW |