| 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 421 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 422 | 422 |
| 423 // Enables seccomp-bpf support for Android. Requires experimental kernel | 423 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 424 // support. <http://crbug.com/166704> | 424 // support. <http://crbug.com/166704> |
| 425 const char kEnableSeccompFilterSandbox[] = | 425 const char kEnableSeccompFilterSandbox[] = |
| 426 "enable-seccomp-filter-sandbox"; | 426 "enable-seccomp-filter-sandbox"; |
| 427 | 427 |
| 428 // Enables the Skia benchmarking extension | 428 // Enables the Skia benchmarking extension |
| 429 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 429 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 430 | 430 |
| 431 // Enables slimming paint: http://www.chromium.org/blink/slimming-paint |
| 432 const char kEnableSlimmingPaint[] = "enable-slimming-paint"; |
| 433 |
| 431 // On platforms that support it, enables smooth scroll animation. | 434 // On platforms that support it, enables smooth scroll animation. |
| 432 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 435 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 433 | 436 |
| 434 // Enable spatial navigation | 437 // Enable spatial navigation |
| 435 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; | 438 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; |
| 436 | 439 |
| 437 // Enables StatsTable, logging statistics to a global named shared memory table. | 440 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 438 const char kEnableStatsTable[] = "enable-stats-table"; | 441 const char kEnableStatsTable[] = "enable-stats-table"; |
| 439 | 442 |
| 440 // Experimentally ensures that each renderer process: | 443 // Experimentally ensures that each renderer process: |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 #endif | 971 #endif |
| 969 | 972 |
| 970 #if defined(ENABLE_PLUGINS) | 973 #if defined(ENABLE_PLUGINS) |
| 971 // Enables the plugin power saver feature. | 974 // Enables the plugin power saver feature. |
| 972 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 975 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 973 #endif | 976 #endif |
| 974 | 977 |
| 975 // Don't dump stuff here, follow the same order as the header. | 978 // Don't dump stuff here, follow the same order as the header. |
| 976 | 979 |
| 977 } // namespace switches | 980 } // namespace switches |
| OLD | NEW |