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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 // Enable experimental timeline API. | 490 // Enable experimental timeline API. |
491 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 491 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
492 | 492 |
493 // Enable the fastback page cache. | 493 // Enable the fastback page cache. |
494 const char kEnableFastback[] = "enable-fastback"; | 494 const char kEnableFastback[] = "enable-fastback"; |
495 | 495 |
496 // By default, cookies are not allowed on file://. They are needed for | 496 // By default, cookies are not allowed on file://. They are needed for |
497 // testing, for example page cycler and layout tests. See bug 1157243. | 497 // testing, for example page cycler and layout tests. See bug 1157243. |
498 const char kEnableFileCookies[] = "enable-file-cookies"; | 498 const char kEnableFileCookies[] = "enable-file-cookies"; |
499 | 499 |
| 500 // Enable the in-browser thumbnailing, which is more efficient than the |
| 501 // in-renderer thumbnailing, as we can use more information to determine |
| 502 // if we need to update thumbnails. |
| 503 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 504 |
500 // Enable IPv6 support, even if probes suggest that it may not be fully | 505 // 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 | 506 // supported. Some probes may require internet connections, and this flag will |
502 // allow support independent of application testing. | 507 // allow support independent of application testing. |
503 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 508 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
504 const char kEnableIPv6[] = "enable-ipv6"; | 509 const char kEnableIPv6[] = "enable-ipv6"; |
505 | 510 |
506 // Enable the GPU plugin and Pepper 3D rendering. | 511 // Enable the GPU plugin and Pepper 3D rendering. |
507 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; | 512 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
508 | 513 |
509 // Force logging to be enabled. Logging is disabled by default in release | 514 // Force logging to be enabled. Logging is disabled by default in release |
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 | 1391 |
1387 // ----------------------------------------------------------------------------- | 1392 // ----------------------------------------------------------------------------- |
1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1389 // | 1394 // |
1390 // You were going to just dump your switches here, weren't you? Instead, | 1395 // You were going to just dump your switches here, weren't you? Instead, |
1391 // please put them in alphabetical order above, or in order inside the | 1396 // please put them in alphabetical order above, or in order inside the |
1392 // appropriate ifdef at the bottom. The order should match the header. | 1397 // appropriate ifdef at the bottom. The order should match the header. |
1393 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
1394 | 1399 |
1395 } // namespace switches | 1400 } // namespace switches |
OLD | NEW |