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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 // Some tracking will still take place at startup, but it will be turned off | 577 // Some tracking will still take place at startup, but it will be turned off |
578 // during chrome_browser_main. | 578 // during chrome_browser_main. |
579 const char kEnableProfiling[] = "enable-profiling"; | 579 const char kEnableProfiling[] = "enable-profiling"; |
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. |
| 588 const char kEnableSpdy3[] = "enable-spdy3"; |
| 589 |
| 590 // Enable SPDY's FlowControl (SPDY/2.1). This is a temporary testing flag. |
| 591 const char kEnableSpdyFlowControl[] = "enable-spdy-flow-control"; |
| 592 |
587 // Enables experimental suggestions pane in New Tab page. | 593 // Enables experimental suggestions pane in New Tab page. |
588 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 594 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
589 | 595 |
590 // Enables syncing browser sessions. | 596 // Enables syncing browser sessions. |
591 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 597 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
592 | 598 |
593 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 599 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
594 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 600 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
595 | 601 |
596 // Enables syncing browser sessions for other synced clients. | 602 // Enables syncing browser sessions for other synced clients. |
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1373 | 1379 |
1374 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1376 // | 1382 // |
1377 // You were going to just dump your switches here, weren't you? Instead, please | 1383 // You were going to just dump your switches here, weren't you? Instead, please |
1378 // put them in alphabetical order above, or in order inside the appropriate | 1384 // put them in alphabetical order above, or in order inside the appropriate |
1379 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
1380 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
1381 | 1387 |
1382 } // namespace switches | 1388 } // namespace switches |
OLD | NEW |