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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 // Some tracking will still take place at startup, but it will be turned off | 569 // Some tracking will still take place at startup, but it will be turned off |
570 // during chrome_browser_main. | 570 // during chrome_browser_main. |
571 const char kEnableProfiling[] = "enable-profiling"; | 571 const char kEnableProfiling[] = "enable-profiling"; |
572 | 572 |
573 // Controls the support for SDCH filtering (dictionary based expansion of | 573 // Controls the support for SDCH filtering (dictionary based expansion of |
574 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 574 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
575 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 575 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
576 // supported server-side for searches on google.com. | 576 // supported server-side for searches on google.com. |
577 const char kEnableSdch[] = "enable-sdch"; | 577 const char kEnableSdch[] = "enable-sdch"; |
578 | 578 |
| 579 // Enable SPDY/3. This is a temporary testing flag. |
| 580 const char kEnableSpdy3[] = "enable-spdy3"; |
| 581 |
| 582 // Enable SPDY's FlowControl (SPDY/2.1). This is a temporary testing flag. |
| 583 const char kEnableSpdyFlowControl[] = "enable-spdy-flow-control"; |
| 584 |
579 // Enables experimental suggestions pane in New Tab page. | 585 // Enables experimental suggestions pane in New Tab page. |
580 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; | 586 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
581 | 587 |
582 // Enables syncing browser sessions. | 588 // Enables syncing browser sessions. |
583 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 589 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
584 | 590 |
585 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 591 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
586 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 592 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
587 | 593 |
588 // Enables syncing browser sessions for other synced clients. | 594 // Enables syncing browser sessions for other synced clients. |
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1359 | 1365 |
1360 // ----------------------------------------------------------------------------- | 1366 // ----------------------------------------------------------------------------- |
1361 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1367 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1362 // | 1368 // |
1363 // You were going to just dump your switches here, weren't you? Instead, please | 1369 // You were going to just dump your switches here, weren't you? Instead, please |
1364 // put them in alphabetical order above, or in order inside the appropriate | 1370 // put them in alphabetical order above, or in order inside the appropriate |
1365 // ifdef at the bottom. The order should match the header. | 1371 // ifdef at the bottom. The order should match the header. |
1366 // ----------------------------------------------------------------------------- | 1372 // ----------------------------------------------------------------------------- |
1367 | 1373 |
1368 } // namespace switches | 1374 } // namespace switches |
OLD | NEW |