OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 | 599 |
600 // Controls the support for SDCH filtering (dictionary based expansion of | 600 // Controls the support for SDCH filtering (dictionary based expansion of |
601 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 601 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
602 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 602 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
603 // supported server-side for searches on google.com. | 603 // supported server-side for searches on google.com. |
604 const char kEnableSdch[] = "enable-sdch"; | 604 const char kEnableSdch[] = "enable-sdch"; |
605 | 605 |
606 // Enable SPDY/3. This is a temporary testing flag. | 606 // Enable SPDY/3. This is a temporary testing flag. |
607 const char kEnableSpdy3[] = "enable-spdy3"; | 607 const char kEnableSpdy3[] = "enable-spdy3"; |
608 | 608 |
| 609 // Enable speculative resource prefetching. |
| 610 const char kEnableSpeculativeResourcePrefetching[] = |
| 611 "enable-speculative-resource-prefetching"; |
| 612 |
609 // Enables the stacked tabstrip. | 613 // Enables the stacked tabstrip. |
610 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 614 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
611 | 615 |
612 // Enables experimental suggestions pane in New Tab page. | 616 // Enables experimental suggestions pane in New Tab page. |
613 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 617 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
614 | 618 |
615 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 619 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
616 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 620 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
617 | 621 |
618 // Enables context menu for selecting groups of tabs. | 622 // Enables context menu for selecting groups of tabs. |
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1456 | 1460 |
1457 // ----------------------------------------------------------------------------- | 1461 // ----------------------------------------------------------------------------- |
1458 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1462 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1459 // | 1463 // |
1460 // You were going to just dump your switches here, weren't you? Instead, please | 1464 // You were going to just dump your switches here, weren't you? Instead, please |
1461 // put them in alphabetical order above, or in order inside the appropriate | 1465 // put them in alphabetical order above, or in order inside the appropriate |
1462 // ifdef at the bottom. The order should match the header. | 1466 // ifdef at the bottom. The order should match the header. |
1463 // ----------------------------------------------------------------------------- | 1467 // ----------------------------------------------------------------------------- |
1464 | 1468 |
1465 } // namespace switches | 1469 } // namespace switches |
OLD | NEW |