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