| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 // Cause the OS X sandbox write to syslog every time an access to a resource | 452 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 453 // is denied by the sandbox. | 453 // is denied by the sandbox. |
| 454 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 454 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 455 | 455 |
| 456 // Enables the Skia benchmarking extension | 456 // Enables the Skia benchmarking extension |
| 457 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 457 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 458 | 458 |
| 459 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 459 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
| 460 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 460 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
| 461 | 461 |
| 462 // Enables paint invalidation based on slimming paint but without the full |
| 463 // slimming paint v2 compositing code. See: https://goo.gl/eQczQW |
| 464 const char kEnableSlimmingPaintInvalidation[] = |
| 465 "enable-slimming-paint-invalidation"; |
| 466 |
| 462 // On platforms that support it, enables smooth scroll animation. | 467 // On platforms that support it, enables smooth scroll animation. |
| 463 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 468 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 464 | 469 |
| 465 // Enable spatial navigation | 470 // Enable spatial navigation |
| 466 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; | 471 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; |
| 467 | 472 |
| 468 // Enables StatsTable, logging statistics to a global named shared memory table. | 473 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 469 const char kEnableStatsTable[] = "enable-stats-table"; | 474 const char kEnableStatsTable[] = "enable-stats-table"; |
| 470 | 475 |
| 471 // Blocks all insecure requests from secure contexts, and prevents the user | 476 // Blocks all insecure requests from secure contexts, and prevents the user |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1076 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1072 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1077 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1073 | 1078 |
| 1074 // Specifies the testcase used by the IPC fuzzer. | 1079 // Specifies the testcase used by the IPC fuzzer. |
| 1075 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1080 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1076 #endif | 1081 #endif |
| 1077 | 1082 |
| 1078 // Don't dump stuff here, follow the same order as the header. | 1083 // Don't dump stuff here, follow the same order as the header. |
| 1079 | 1084 |
| 1080 } // namespace switches | 1085 } // namespace switches |
| OLD | NEW |