| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 | 603 |
| 604 // Controls the support for SDCH filtering (dictionary based expansion of | 604 // Controls the support for SDCH filtering (dictionary based expansion of |
| 605 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 605 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 606 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 606 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 607 // supported server-side for searches on google.com. | 607 // supported server-side for searches on google.com. |
| 608 const char kEnableSdch[] = "enable-sdch"; | 608 const char kEnableSdch[] = "enable-sdch"; |
| 609 | 609 |
| 610 // Enable SPDY/3. This is a temporary testing flag. | 610 // Enable SPDY/3. This is a temporary testing flag. |
| 611 const char kEnableSpdy3[] = "enable-spdy3"; | 611 const char kEnableSpdy3[] = "enable-spdy3"; |
| 612 | 612 |
| 613 // Enable speculative resource prefetching. |
| 614 const char kEnableSpeculativeResourcePrefetching[] = |
| 615 "enable-speculative-resource-prefetching"; |
| 616 |
| 613 // Enables the stacked tabstrip. | 617 // Enables the stacked tabstrip. |
| 614 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 618 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 615 | 619 |
| 616 // Enables experimental suggestions pane in New Tab page. | 620 // Enables experimental suggestions pane in New Tab page. |
| 617 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 621 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 618 | 622 |
| 619 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 623 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
| 620 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 624 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
| 621 | 625 |
| 622 // Enables context menu for selecting groups of tabs. | 626 // Enables context menu for selecting groups of tabs. |
| (...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1475 | 1479 |
| 1476 // ----------------------------------------------------------------------------- | 1480 // ----------------------------------------------------------------------------- |
| 1477 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1481 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1478 // | 1482 // |
| 1479 // You were going to just dump your switches here, weren't you? Instead, please | 1483 // You were going to just dump your switches here, weren't you? Instead, please |
| 1480 // put them in alphabetical order above, or in order inside the appropriate | 1484 // put them in alphabetical order above, or in order inside the appropriate |
| 1481 // ifdef at the bottom. The order should match the header. | 1485 // ifdef at the bottom. The order should match the header. |
| 1482 // ----------------------------------------------------------------------------- | 1486 // ----------------------------------------------------------------------------- |
| 1483 | 1487 |
| 1484 } // namespace switches | 1488 } // namespace switches |
| OLD | NEW |