| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 // Enables extension APIs that are in development. | 177 // Enables extension APIs that are in development. |
| 178 const char kEnableExperimentalExtensionApis[] = | 178 const char kEnableExperimentalExtensionApis[] = |
| 179 "enable-experimental-extension-apis"; | 179 "enable-experimental-extension-apis"; |
| 180 | 180 |
| 181 // Enable experimental WebGL support. | 181 // Enable experimental WebGL support. |
| 182 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 182 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
| 183 | 183 |
| 184 // Enable experimental timeline API. | 184 // Enable experimental timeline API. |
| 185 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 185 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 186 | 186 |
| 187 // Enable extension toolstrips (deprecated API - will be removed). |
| 188 const char kEnableExtensionToolstrips[] = "enable-extension-toolstrips"; |
| 189 |
| 187 // Enable the fastback page cache. | 190 // Enable the fastback page cache. |
| 188 const char kEnableFastback[] = "enable-fastback"; | 191 const char kEnableFastback[] = "enable-fastback"; |
| 189 | 192 |
| 190 // By default, cookies are not allowed on file://. They are needed for | 193 // By default, cookies are not allowed on file://. They are needed for |
| 191 // testing, for example page cycler and layout tests. See bug 1157243. | 194 // testing, for example page cycler and layout tests. See bug 1157243. |
| 192 const char kEnableFileCookies[] = "enable-file-cookies"; | 195 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 193 | 196 |
| 194 // Disable LocalStorage. | 197 // Disable LocalStorage. |
| 195 const char kDisableLocalStorage[] = "disable-local-storage"; | 198 const char kDisableLocalStorage[] = "disable-local-storage"; |
| 196 | 199 |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 | 702 |
| 700 // ----------------------------------------------------------------------------- | 703 // ----------------------------------------------------------------------------- |
| 701 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 704 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 702 // | 705 // |
| 703 // You were going to just dump your switches here, weren't you? Instead, | 706 // You were going to just dump your switches here, weren't you? Instead, |
| 704 // please put them in alphabetical order above, or in order inside the | 707 // please put them in alphabetical order above, or in order inside the |
| 705 // appropriate ifdef at the bottom. The order should match the header. | 708 // appropriate ifdef at the bottom. The order should match the header. |
| 706 // ----------------------------------------------------------------------------- | 709 // ----------------------------------------------------------------------------- |
| 707 | 710 |
| 708 } // namespace switches | 711 } // namespace switches |
| OLD | NEW |