| 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 593 |
| 594 // Controls the support for SDCH filtering (dictionary based expansion of | 594 // Controls the support for SDCH filtering (dictionary based expansion of |
| 595 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 595 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 596 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 596 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 597 // supported server-side for searches on google.com. | 597 // supported server-side for searches on google.com. |
| 598 const char kEnableSdch[] = "enable-sdch"; | 598 const char kEnableSdch[] = "enable-sdch"; |
| 599 | 599 |
| 600 // Enable SPDY/3. This is a temporary testing flag. | 600 // Enable SPDY/3. This is a temporary testing flag. |
| 601 const char kEnableSpdy3[] = "enable-spdy3"; | 601 const char kEnableSpdy3[] = "enable-spdy3"; |
| 602 | 602 |
| 603 // Enable speculative resource prefetching. |
| 604 const char kEnableSpeculativeResourcePrefetching[] = |
| 605 "enable-speculative-resource-prefetching"; |
| 606 |
| 603 // Enables the stacked tabstrip. | 607 // Enables the stacked tabstrip. |
| 604 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 608 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
| 605 | 609 |
| 606 // Enables experimental suggestions pane in New Tab page. | 610 // Enables experimental suggestions pane in New Tab page. |
| 607 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 611 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 608 | 612 |
| 609 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins. | 613 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins. |
| 610 const char kEnableSyncSignin[] = "enable-sync-signin"; | 614 const char kEnableSyncSignin[] = "enable-sync-signin"; |
| 611 | 615 |
| 612 // Enables syncing browser sessions. | 616 // Enables syncing browser sessions. |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 | 1451 |
| 1448 // ----------------------------------------------------------------------------- | 1452 // ----------------------------------------------------------------------------- |
| 1449 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1453 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1450 // | 1454 // |
| 1451 // You were going to just dump your switches here, weren't you? Instead, please | 1455 // You were going to just dump your switches here, weren't you? Instead, please |
| 1452 // put them in alphabetical order above, or in order inside the appropriate | 1456 // put them in alphabetical order above, or in order inside the appropriate |
| 1453 // ifdef at the bottom. The order should match the header. | 1457 // ifdef at the bottom. The order should match the header. |
| 1454 // ----------------------------------------------------------------------------- | 1458 // ----------------------------------------------------------------------------- |
| 1455 | 1459 |
| 1456 } // namespace switches | 1460 } // namespace switches |
| OLD | NEW |