| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 // Enable the fastback page cache. | 485 // Enable the fastback page cache. |
| 486 const char kEnableFastback[] = "enable-fastback"; | 486 const char kEnableFastback[] = "enable-fastback"; |
| 487 | 487 |
| 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 the JavaScript Full Screen API. |
| 496 const char kEnableFullScreen[] = "enable-fullscreen"; |
| 497 |
| 495 // Enable the in-browser thumbnailing, which is more efficient than the | 498 // Enable the in-browser thumbnailing, which is more efficient than the |
| 496 // in-renderer thumbnailing, as we can use more information to determine | 499 // in-renderer thumbnailing, as we can use more information to determine |
| 497 // if we need to update thumbnails. | 500 // if we need to update thumbnails. |
| 498 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 501 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 499 | 502 |
| 500 // Enable IPv6 support, even if probes suggest that it may not be fully | 503 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 501 // supported. Some probes may require internet connections, and this flag will | 504 // supported. Some probes may require internet connections, and this flag will |
| 502 // allow support independent of application testing. | 505 // allow support independent of application testing. |
| 503 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 506 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 504 const char kEnableIPv6[] = "enable-ipv6"; | 507 const char kEnableIPv6[] = "enable-ipv6"; |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 | 1235 |
| 1233 // ----------------------------------------------------------------------------- | 1236 // ----------------------------------------------------------------------------- |
| 1234 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1237 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1235 // | 1238 // |
| 1236 // You were going to just dump your switches here, weren't you? Instead, | 1239 // You were going to just dump your switches here, weren't you? Instead, |
| 1237 // please put them in alphabetical order above, or in order inside the | 1240 // please put them in alphabetical order above, or in order inside the |
| 1238 // appropriate ifdef at the bottom. The order should match the header. | 1241 // appropriate ifdef at the bottom. The order should match the header. |
| 1239 // ----------------------------------------------------------------------------- | 1242 // ----------------------------------------------------------------------------- |
| 1240 | 1243 |
| 1241 } // namespace switches | 1244 } // namespace switches |
| OLD | NEW |