Chromium Code Reviews| 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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 508 // Enable the fastback page cache. | 508 // Enable the fastback page cache. |
| 509 const char kEnableFastback[] = "enable-fastback"; | 509 const char kEnableFastback[] = "enable-fastback"; |
| 510 | 510 |
| 511 // By default, cookies are not allowed on file://. They are needed for | 511 // By default, cookies are not allowed on file://. They are needed for |
| 512 // testing, for example page cycler and layout tests. See bug 1157243. | 512 // testing, for example page cycler and layout tests. See bug 1157243. |
| 513 const char kEnableFileCookies[] = "enable-file-cookies"; | 513 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 514 | 514 |
| 515 // Enable FileSystem API URLs. | 515 // Enable FileSystem API URLs. |
| 516 const char kEnableFileSystemURLScheme[] = "enable-filesystem-url-scheme"; | 516 const char kEnableFileSystemURLScheme[] = "enable-filesystem-url-scheme"; |
| 517 | 517 |
| 518 // Enable the JavaaScript Full Screen API. | |
|
scherkus (not reviewing)
2011/02/25 01:33:50
JavaaScript -> JavaScript
| |
| 519 const char kEnableFullScreen[] = "enable-fullscreen"; | |
| 520 | |
| 518 // Enable the in-browser thumbnailing, which is more efficient than the | 521 // Enable the in-browser thumbnailing, which is more efficient than the |
| 519 // in-renderer thumbnailing, as we can use more information to determine | 522 // in-renderer thumbnailing, as we can use more information to determine |
| 520 // if we need to update thumbnails. | 523 // if we need to update thumbnails. |
| 521 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 524 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 522 | 525 |
| 523 // Enable IPv6 support, even if probes suggest that it may not be fully | 526 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 524 // supported. Some probes may require internet connections, and this flag will | 527 // supported. Some probes may require internet connections, and this flag will |
| 525 // allow support independent of application testing. | 528 // allow support independent of application testing. |
| 526 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 529 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 527 const char kEnableIPv6[] = "enable-ipv6"; | 530 const char kEnableIPv6[] = "enable-ipv6"; |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1427 | 1430 |
| 1428 // ----------------------------------------------------------------------------- | 1431 // ----------------------------------------------------------------------------- |
| 1429 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1432 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1430 // | 1433 // |
| 1431 // You were going to just dump your switches here, weren't you? Instead, | 1434 // You were going to just dump your switches here, weren't you? Instead, |
| 1432 // please put them in alphabetical order above, or in order inside the | 1435 // please put them in alphabetical order above, or in order inside the |
| 1433 // appropriate ifdef at the bottom. The order should match the header. | 1436 // appropriate ifdef at the bottom. The order should match the header. |
| 1434 // ----------------------------------------------------------------------------- | 1437 // ----------------------------------------------------------------------------- |
| 1435 | 1438 |
| 1436 } // namespace switches | 1439 } // namespace switches |
| OLD | NEW |