| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 // scripts. | 200 // scripts. |
| 201 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 201 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
| 202 | 202 |
| 203 // Enables the benchmarking extensions. | 203 // Enables the benchmarking extensions. |
| 204 const char kEnableBenchmarking[] = "enable-benchmarking"; | 204 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 205 | 205 |
| 206 // Enables extension APIs that are in development. | 206 // Enables extension APIs that are in development. |
| 207 const char kEnableExperimentalExtensionApis[] = | 207 const char kEnableExperimentalExtensionApis[] = |
| 208 "enable-experimental-extension-apis"; | 208 "enable-experimental-extension-apis"; |
| 209 | 209 |
| 210 // Enable metrics extension API. |
| 211 const char kEnableMetricsExtensionApi[] = "enable-metrics-extension-api"; |
| 212 |
| 210 // Enable experimental WebGL support. | 213 // Enable experimental WebGL support. |
| 211 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 214 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
| 212 | 215 |
| 213 // Enable experimental extension apps. | 216 // Enable experimental extension apps. |
| 214 const char kEnableExtensionApps[] = "enable-extension-apps"; | 217 const char kEnableExtensionApps[] = "enable-extension-apps"; |
| 215 | 218 |
| 216 // Enable experimental timeline API. | 219 // Enable experimental timeline API. |
| 217 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 220 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 218 | 221 |
| 219 // Enable extension toolstrips (deprecated API - will be removed). | 222 // Enable extension toolstrips (deprecated API - will be removed). |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 | 819 |
| 817 // ----------------------------------------------------------------------------- | 820 // ----------------------------------------------------------------------------- |
| 818 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 821 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 819 // | 822 // |
| 820 // You were going to just dump your switches here, weren't you? Instead, | 823 // You were going to just dump your switches here, weren't you? Instead, |
| 821 // please put them in alphabetical order above, or in order inside the | 824 // please put them in alphabetical order above, or in order inside the |
| 822 // appropriate ifdef at the bottom. The order should match the header. | 825 // appropriate ifdef at the bottom. The order should match the header. |
| 823 // ----------------------------------------------------------------------------- | 826 // ----------------------------------------------------------------------------- |
| 824 | 827 |
| 825 } // namespace switches | 828 } // namespace switches |
| OLD | NEW |