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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 // Cause the OS X sandbox write to syslog every time an access to a resource | 457 // Cause the OS X sandbox write to syslog every time an access to a resource |
458 // is denied by the sandbox. | 458 // is denied by the sandbox. |
459 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 459 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
460 | 460 |
461 // Enables the Skia benchmarking extension | 461 // Enables the Skia benchmarking extension |
462 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 462 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
463 | 463 |
464 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 464 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
465 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 465 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
466 | 466 |
467 // Enables paint invalidation based on slimming paint but without the full | 467 // Enables or disables paint invalidation based on slimming paint but without |
468 // slimming paint v2 compositing code. See: https://goo.gl/eQczQW | 468 // the full slimming paint v2 compositing code. See: https://goo.gl/eQczQW |
469 const char kEnableSlimmingPaintInvalidation[] = | 469 const char kEnableSlimmingPaintInvalidation[] = |
470 "enable-slimming-paint-invalidation"; | 470 "enable-slimming-paint-invalidation"; |
| 471 const char kDisableSlimmingPaintInvalidation[] = |
| 472 "disable-slimming-paint-invalidation"; |
471 | 473 |
472 // On platforms that support it, enables smooth scroll animation. | 474 // On platforms that support it, enables smooth scroll animation. |
473 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 475 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
474 | 476 |
475 // Enable spatial navigation | 477 // Enable spatial navigation |
476 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; | 478 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; |
477 | 479 |
478 // Enables StatsTable, logging statistics to a global named shared memory table. | 480 // Enables StatsTable, logging statistics to a global named shared memory table. |
479 const char kEnableStatsTable[] = "enable-stats-table"; | 481 const char kEnableStatsTable[] = "enable-stats-table"; |
480 | 482 |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1087 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1089 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1088 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1090 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1089 | 1091 |
1090 // Specifies the testcase used by the IPC fuzzer. | 1092 // Specifies the testcase used by the IPC fuzzer. |
1091 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1093 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1092 #endif | 1094 #endif |
1093 | 1095 |
1094 // Don't dump stuff here, follow the same order as the header. | 1096 // Don't dump stuff here, follow the same order as the header. |
1095 | 1097 |
1096 } // namespace switches | 1098 } // namespace switches |
OLD | NEW |