| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 // Enable experimental timeline API. | 416 // Enable experimental timeline API. |
| 417 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 417 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 418 | 418 |
| 419 // Enable the fastback page cache. | 419 // Enable the fastback page cache. |
| 420 const char kEnableFastback[] = "enable-fastback"; | 420 const char kEnableFastback[] = "enable-fastback"; |
| 421 | 421 |
| 422 // By default, cookies are not allowed on file://. They are needed for | 422 // By default, cookies are not allowed on file://. They are needed for |
| 423 // testing, for example page cycler and layout tests. See bug 1157243. | 423 // testing, for example page cycler and layout tests. See bug 1157243. |
| 424 const char kEnableFileCookies[] = "enable-file-cookies"; | 424 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 425 | 425 |
| 426 // Enable the use of the HistoryQuickProvider for autocomplete results. | |
| 427 const char kEnableHistoryQuickProvider[] = "enable-history-quick-provider"; | |
| 428 | |
| 429 // Enable the JavaScript Full Screen API. | 426 // Enable the JavaScript Full Screen API. |
| 430 const char kEnableFullScreen[] = "enable-fullscreen"; | 427 const char kEnableFullScreen[] = "enable-fullscreen"; |
| 431 | 428 |
| 432 // Enable the in-browser thumbnailing, which is more efficient than the | 429 // Enable the in-browser thumbnailing, which is more efficient than the |
| 433 // in-renderer thumbnailing, as we can use more information to determine | 430 // in-renderer thumbnailing, as we can use more information to determine |
| 434 // if we need to update thumbnails. | 431 // if we need to update thumbnails. |
| 435 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; | 432 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; |
| 436 | 433 |
| 437 // Enable IPv6 support, even if probes suggest that it may not be fully | 434 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 438 // supported. Some probes may require internet connections, and this flag will | 435 // supported. Some probes may require internet connections, and this flag will |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 | 1169 |
| 1173 // ----------------------------------------------------------------------------- | 1170 // ----------------------------------------------------------------------------- |
| 1174 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1171 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1175 // | 1172 // |
| 1176 // You were going to just dump your switches here, weren't you? Instead, | 1173 // You were going to just dump your switches here, weren't you? Instead, |
| 1177 // please put them in alphabetical order above, or in order inside the | 1174 // please put them in alphabetical order above, or in order inside the |
| 1178 // appropriate ifdef at the bottom. The order should match the header. | 1175 // appropriate ifdef at the bottom. The order should match the header. |
| 1179 // ----------------------------------------------------------------------------- | 1176 // ----------------------------------------------------------------------------- |
| 1180 | 1177 |
| 1181 } // namespace switches | 1178 } // namespace switches |
| OLD | NEW |