| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 304 |
| 305 // Enable the Indexed Database API. | 305 // Enable the Indexed Database API. |
| 306 const char kEnableIndexedDatabase[] = "enable-indexed-database"; | 306 const char kEnableIndexedDatabase[] = "enable-indexed-database"; |
| 307 | 307 |
| 308 // Enable IPv6 support, even if probes suggest that it may not be fully | 308 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 309 // supported. Some probes may require internet connections, and this flag will | 309 // supported. Some probes may require internet connections, and this flag will |
| 310 // allow support independent of application testing. | 310 // allow support independent of application testing. |
| 311 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 311 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 312 const char kEnableIPv6[] = "enable-ipv6"; | 312 const char kEnableIPv6[] = "enable-ipv6"; |
| 313 | 313 |
| 314 // Enable the GLSL translator. |
| 315 const char kEnableGLSLTranslator[] = "enable-glsl-translator"; |
| 316 |
| 314 // Enable the GPU plugin and Pepper 3D rendering. | 317 // Enable the GPU plugin and Pepper 3D rendering. |
| 315 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; | 318 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
| 316 | 319 |
| 317 // Enable experimental GPU rendering for backing store and video. | 320 // Enable experimental GPU rendering for backing store and video. |
| 318 const char kEnableGPURendering[] = "enable-gpu-rendering"; | 321 const char kEnableGPURendering[] = "enable-gpu-rendering"; |
| 319 | 322 |
| 320 // Force logging to be enabled. Logging is disabled by default in release | 323 // Force logging to be enabled. Logging is disabled by default in release |
| 321 // builds. | 324 // builds. |
| 322 const char kEnableLogging[] = "enable-logging"; | 325 const char kEnableLogging[] = "enable-logging"; |
| 323 | 326 |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 | 1072 |
| 1070 // ----------------------------------------------------------------------------- | 1073 // ----------------------------------------------------------------------------- |
| 1071 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1074 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1072 // | 1075 // |
| 1073 // You were going to just dump your switches here, weren't you? Instead, | 1076 // You were going to just dump your switches here, weren't you? Instead, |
| 1074 // please put them in alphabetical order above, or in order inside the | 1077 // please put them in alphabetical order above, or in order inside the |
| 1075 // appropriate ifdef at the bottom. The order should match the header. | 1078 // appropriate ifdef at the bottom. The order should match the header. |
| 1076 // ----------------------------------------------------------------------------- | 1079 // ----------------------------------------------------------------------------- |
| 1077 | 1080 |
| 1078 } // namespace switches | 1081 } // namespace switches |
| OLD | NEW |