| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // Enables extension APIs that are in development. | 338 // Enables extension APIs that are in development. |
| 339 const char kEnableExperimentalExtensionApis[] = | 339 const char kEnableExperimentalExtensionApis[] = |
| 340 "enable-experimental-extension-apis"; | 340 "enable-experimental-extension-apis"; |
| 341 | 341 |
| 342 // Enable experimental WebGL support. | 342 // Enable experimental WebGL support. |
| 343 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 343 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
| 344 | 344 |
| 345 // Enable experimental timeline API. | 345 // Enable experimental timeline API. |
| 346 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 346 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 347 | 347 |
| 348 // Enable extension toolstrips (deprecated API - will be removed). | |
| 349 const char kEnableExtensionToolstrips[] = "enable-extension-toolstrips"; | |
| 350 | |
| 351 // Enable the fastback page cache. | 348 // Enable the fastback page cache. |
| 352 const char kEnableFastback[] = "enable-fastback"; | 349 const char kEnableFastback[] = "enable-fastback"; |
| 353 | 350 |
| 354 // By default, cookies are not allowed on file://. They are needed for | 351 // By default, cookies are not allowed on file://. They are needed for |
| 355 // testing, for example page cycler and layout tests. See bug 1157243. | 352 // testing, for example page cycler and layout tests. See bug 1157243. |
| 356 const char kEnableFileCookies[] = "enable-file-cookies"; | 353 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 357 | 354 |
| 358 // Enable the Indexed Database API. | 355 // Enable the Indexed Database API. |
| 359 const char kEnableIndexedDatabase[] = "enable-indexed-database"; | 356 const char kEnableIndexedDatabase[] = "enable-indexed-database"; |
| 360 | 357 |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 | 1163 |
| 1167 // ----------------------------------------------------------------------------- | 1164 // ----------------------------------------------------------------------------- |
| 1168 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1165 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1169 // | 1166 // |
| 1170 // You were going to just dump your switches here, weren't you? Instead, | 1167 // You were going to just dump your switches here, weren't you? Instead, |
| 1171 // please put them in alphabetical order above, or in order inside the | 1168 // please put them in alphabetical order above, or in order inside the |
| 1172 // appropriate ifdef at the bottom. The order should match the header. | 1169 // appropriate ifdef at the bottom. The order should match the header. |
| 1173 // ----------------------------------------------------------------------------- | 1170 // ----------------------------------------------------------------------------- |
| 1174 | 1171 |
| 1175 } // namespace switches | 1172 } // namespace switches |
| OLD | NEW |