| 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 | 580 |
| 581 // Controls the support for SDCH filtering (dictionary based expansion of | 581 // Controls the support for SDCH filtering (dictionary based expansion of |
| 582 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 582 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 583 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 583 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 584 // supported server-side for searches on google.com. | 584 // supported server-side for searches on google.com. |
| 585 const char kEnableSdch[] = "enable-sdch"; | 585 const char kEnableSdch[] = "enable-sdch"; |
| 586 | 586 |
| 587 // Enable SPDY/3. This is a temporary testing flag. | 587 // Enable SPDY/3. This is a temporary testing flag. |
| 588 const char kEnableSpdy3[] = "enable-spdy3"; | 588 const char kEnableSpdy3[] = "enable-spdy3"; |
| 589 | 589 |
| 590 // Enable SPDY's FlowControl (SPDY/2.1). This is a temporary testing flag. | |
| 591 const char kEnableSpdyFlowControl[] = "enable-spdy-flow-control"; | |
| 592 | |
| 593 // Enables experimental suggestions pane in New Tab page. | 590 // Enables experimental suggestions pane in New Tab page. |
| 594 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 591 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 595 | 592 |
| 596 // Enables syncing browser sessions. | 593 // Enables syncing browser sessions. |
| 597 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 594 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
| 598 | 595 |
| 599 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 596 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
| 600 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 597 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
| 601 | 598 |
| 602 // Enables syncing browser sessions for other synced clients. | 599 // Enables syncing browser sessions for other synced clients. |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1384 | 1381 |
| 1385 // ----------------------------------------------------------------------------- | 1382 // ----------------------------------------------------------------------------- |
| 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1387 // | 1384 // |
| 1388 // You were going to just dump your switches here, weren't you? Instead, please | 1385 // You were going to just dump your switches here, weren't you? Instead, please |
| 1389 // put them in alphabetical order above, or in order inside the appropriate | 1386 // put them in alphabetical order above, or in order inside the appropriate |
| 1390 // ifdef at the bottom. The order should match the header. | 1387 // ifdef at the bottom. The order should match the header. |
| 1391 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
| 1392 | 1389 |
| 1393 } // namespace switches | 1390 } // namespace switches |
| OLD | NEW |