| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 // Experimental. Enables restoring session state (cookies, session storage, | 539 // Experimental. Enables restoring session state (cookies, session storage, |
| 540 // etc.) when autorestarting. | 540 // etc.) when autorestarting. |
| 541 const char kEnableRestoreSessionState[] = "enable-restore-session-state"; | 541 const char kEnableRestoreSessionState[] = "enable-restore-session-state"; |
| 542 | 542 |
| 543 // Controls the support for SDCH filtering (dictionary based expansion of | 543 // Controls the support for SDCH filtering (dictionary based expansion of |
| 544 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 544 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 545 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 545 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 546 // supported server-side for searches on google.com. | 546 // supported server-side for searches on google.com. |
| 547 const char kEnableSdch[] = "enable-sdch"; | 547 const char kEnableSdch[] = "enable-sdch"; |
| 548 | 548 |
| 549 // Enables experimental suggested pane in New Tab page. |
| 550 const char kEnableSuggestionsTabPage[] = "enable-suggested-ntp"; |
| 551 |
| 549 // Enables syncing extension settings. | 552 // Enables syncing extension settings. |
| 550 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings"; | 553 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings"; |
| 551 | 554 |
| 552 // Enables OAuth sign-in for sync. | 555 // Enables OAuth sign-in for sync. |
| 553 const char kEnableSyncOAuth[] = "enable-sync-oauth"; | 556 const char kEnableSyncOAuth[] = "enable-sync-oauth"; |
| 554 | 557 |
| 555 // Enables syncing browser sessions. | 558 // Enables syncing browser sessions. |
| 556 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 559 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
| 557 | 560 |
| 558 // Enables syncing browser sessions for other synced clients. | 561 // Enables syncing browser sessions for other synced clients. |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 | 1302 |
| 1300 // ----------------------------------------------------------------------------- | 1303 // ----------------------------------------------------------------------------- |
| 1301 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1304 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1302 // | 1305 // |
| 1303 // You were going to just dump your switches here, weren't you? Instead, please | 1306 // You were going to just dump your switches here, weren't you? Instead, please |
| 1304 // put them in alphabetical order above, or in order inside the appropriate | 1307 // put them in alphabetical order above, or in order inside the appropriate |
| 1305 // ifdef at the bottom. The order should match the header. | 1308 // ifdef at the bottom. The order should match the header. |
| 1306 // ----------------------------------------------------------------------------- | 1309 // ----------------------------------------------------------------------------- |
| 1307 | 1310 |
| 1308 } // namespace switches | 1311 } // namespace switches |
| OLD | NEW |