| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 // By default, cookies are not allowed on file://. They are needed for | 488 // By default, cookies are not allowed on file://. They are needed for |
| 489 // testing, for example page cycler and layout tests. See bug 1157243. | 489 // testing, for example page cycler and layout tests. See bug 1157243. |
| 490 const char kEnableFileCookies[] = "enable-file-cookies"; | 490 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 491 | 491 |
| 492 // Enable the use of the HistoryQuickProvider for autocomplete results. | 492 // Enable the use of the HistoryQuickProvider for autocomplete results. |
| 493 const char kEnableHistoryQuickProvider[] = "enable-history-quick-provider"; | 493 const char kEnableHistoryQuickProvider[] = "enable-history-quick-provider"; |
| 494 | 494 |
| 495 // Enable FileSystem API URLs. | 495 // Enable FileSystem API URLs. |
| 496 const char kEnableFileSystemURLScheme[] = "enable-filesystem-url-scheme"; | 496 const char kEnableFileSystemURLScheme[] = "enable-filesystem-url-scheme"; |
| 497 | 497 |
| 498 // Enable the JavaScript Full Screen API. |
| 499 const char kEnableFullScreen[] = "enable-fullscreen"; |
| 500 |
| 498 // Enable the in-browser thumbnailing, which is more efficient than the | 501 // Enable the in-browser thumbnailing, which is more efficient than the |
| 499 // in-renderer thumbnailing, as we can use more information to determine | 502 // in-renderer thumbnailing, as we can use more information to determine |
| 500 // if we need to update thumbnails. | 503 // if we need to update thumbnails. |
| 501 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 504 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 502 | 505 |
| 503 // Enable IPv6 support, even if probes suggest that it may not be fully | 506 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 504 // supported. Some probes may require internet connections, and this flag will | 507 // supported. Some probes may require internet connections, and this flag will |
| 505 // allow support independent of application testing. | 508 // allow support independent of application testing. |
| 506 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 509 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 507 const char kEnableIPv6[] = "enable-ipv6"; | 510 const char kEnableIPv6[] = "enable-ipv6"; |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1238 | 1241 |
| 1239 // ----------------------------------------------------------------------------- | 1242 // ----------------------------------------------------------------------------- |
| 1240 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1243 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1241 // | 1244 // |
| 1242 // You were going to just dump your switches here, weren't you? Instead, | 1245 // You were going to just dump your switches here, weren't you? Instead, |
| 1243 // please put them in alphabetical order above, or in order inside the | 1246 // please put them in alphabetical order above, or in order inside the |
| 1244 // appropriate ifdef at the bottom. The order should match the header. | 1247 // appropriate ifdef at the bottom. The order should match the header. |
| 1245 // ----------------------------------------------------------------------------- | 1248 // ----------------------------------------------------------------------------- |
| 1246 | 1249 |
| 1247 } // namespace switches | 1250 } // namespace switches |
| OLD | NEW |