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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 const char kEnableFileCookies[] = "enable-file-cookies"; | 428 const char kEnableFileCookies[] = "enable-file-cookies"; |
429 | 429 |
430 // Enable the JavaScript Full Screen API. | 430 // Enable the JavaScript Full Screen API. |
431 const char kEnableFullScreen[] = "enable-fullscreen"; | 431 const char kEnableFullScreen[] = "enable-fullscreen"; |
432 | 432 |
433 // Enable the in-browser thumbnailing, which is more efficient than the | 433 // Enable the in-browser thumbnailing, which is more efficient than the |
434 // in-renderer thumbnailing, as we can use more information to determine | 434 // in-renderer thumbnailing, as we can use more information to determine |
435 // if we need to update thumbnails. | 435 // if we need to update thumbnails. |
436 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 436 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
437 | 437 |
| 438 // Enables web developers to initiate inline installation of Chrome Web Store |
| 439 // items. |
| 440 const char kEnableInlineWebstoreInstall[] = "enable-inline-webstore-install"; |
| 441 |
438 // Enable IPv6 support, even if probes suggest that it may not be fully | 442 // Enable IPv6 support, even if probes suggest that it may not be fully |
439 // supported. Some probes may require internet connections, and this flag will | 443 // supported. Some probes may require internet connections, and this flag will |
440 // allow support independent of application testing. | 444 // allow support independent of application testing. |
441 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 445 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
442 const char kEnableIPv6[] = "enable-ipv6"; | 446 const char kEnableIPv6[] = "enable-ipv6"; |
443 | 447 |
444 /// Enable the IPC fuzzer for reliability testing | 448 /// Enable the IPC fuzzer for reliability testing |
445 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; | 449 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; |
446 | 450 |
447 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 451 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 | 1235 |
1232 // ----------------------------------------------------------------------------- | 1236 // ----------------------------------------------------------------------------- |
1233 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1237 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1234 // | 1238 // |
1235 // 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, |
1236 // 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 |
1237 // appropriate ifdef at the bottom. The order should match the header. | 1241 // appropriate ifdef at the bottom. The order should match the header. |
1238 // ----------------------------------------------------------------------------- | 1242 // ----------------------------------------------------------------------------- |
1239 | 1243 |
1240 } // namespace switches | 1244 } // namespace switches |
OLD | NEW |