| 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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 // Experimental. Enables restoring session state (cookies, session storage, | 548 // Experimental. Enables restoring session state (cookies, session storage, |
| 549 // etc.) when autorestarting. | 549 // etc.) when autorestarting. |
| 550 const char kEnableRestoreSessionState[] = "enable-restore-session-state"; | 550 const char kEnableRestoreSessionState[] = "enable-restore-session-state"; |
| 551 | 551 |
| 552 // Controls the support for SDCH filtering (dictionary based expansion of | 552 // Controls the support for SDCH filtering (dictionary based expansion of |
| 553 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 553 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 554 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 554 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 555 // supported server-side for searches on google.com. | 555 // supported server-side for searches on google.com. |
| 556 const char kEnableSdch[] = "enable-sdch"; | 556 const char kEnableSdch[] = "enable-sdch"; |
| 557 | 557 |
| 558 // Enables experimental suggestions pane in New Tab page. |
| 559 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 560 |
| 558 // Enables syncing extension settings. | 561 // Enables syncing extension settings. |
| 559 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings"; | 562 const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings"; |
| 560 | 563 |
| 561 // Enables syncing browser sessions. | 564 // Enables syncing browser sessions. |
| 562 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 565 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
| 563 | 566 |
| 564 // Enables syncing browser sessions for other synced clients. | 567 // Enables syncing browser sessions for other synced clients. |
| 565 const char kEnableSyncTabsForOtherClients[] = | 568 const char kEnableSyncTabsForOtherClients[] = |
| 566 "enable-sync-tabs-for-other-clients"; | 569 "enable-sync-tabs-for-other-clients"; |
| 567 | 570 |
| (...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1324 | 1327 |
| 1325 // ----------------------------------------------------------------------------- | 1328 // ----------------------------------------------------------------------------- |
| 1326 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1329 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1327 // | 1330 // |
| 1328 // You were going to just dump your switches here, weren't you? Instead, please | 1331 // You were going to just dump your switches here, weren't you? Instead, please |
| 1329 // put them in alphabetical order above, or in order inside the appropriate | 1332 // put them in alphabetical order above, or in order inside the appropriate |
| 1330 // ifdef at the bottom. The order should match the header. | 1333 // ifdef at the bottom. The order should match the header. |
| 1331 // ----------------------------------------------------------------------------- | 1334 // ----------------------------------------------------------------------------- |
| 1332 | 1335 |
| 1333 } // namespace switches | 1336 } // namespace switches |
| OLD | NEW |