| 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 // Some tracking will still take place at startup, but it will be turned off | 560 // Some tracking will still take place at startup, but it will be turned off |
| 561 // during chrome_browser_main. | 561 // during chrome_browser_main. |
| 562 const char kEnableProfiling[] = "enable-profiling"; | 562 const char kEnableProfiling[] = "enable-profiling"; |
| 563 | 563 |
| 564 // Controls the support for SDCH filtering (dictionary based expansion of | 564 // Controls the support for SDCH filtering (dictionary based expansion of |
| 565 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 565 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 566 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 566 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 567 // supported server-side for searches on google.com. | 567 // supported server-side for searches on google.com. |
| 568 const char kEnableSdch[] = "enable-sdch"; | 568 const char kEnableSdch[] = "enable-sdch"; |
| 569 | 569 |
| 570 // Enables experimental suggestions pane in New Tab page. |
| 571 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; |
| 572 |
| 570 // Enables syncing browser sessions. | 573 // Enables syncing browser sessions. |
| 571 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 574 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
| 572 | 575 |
| 573 // Enables syncing browser sessions for other synced clients. | 576 // Enables syncing browser sessions for other synced clients. |
| 574 const char kEnableSyncTabsForOtherClients[] = | 577 const char kEnableSyncTabsForOtherClients[] = |
| 575 "enable-sync-tabs-for-other-clients"; | 578 "enable-sync-tabs-for-other-clients"; |
| 576 | 579 |
| 577 // Enables context menu for selecting groups of tabs. | 580 // Enables context menu for selecting groups of tabs. |
| 578 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 581 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 579 | 582 |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 | 1346 |
| 1344 // ----------------------------------------------------------------------------- | 1347 // ----------------------------------------------------------------------------- |
| 1345 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1348 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1346 // | 1349 // |
| 1347 // You were going to just dump your switches here, weren't you? Instead, please | 1350 // You were going to just dump your switches here, weren't you? Instead, please |
| 1348 // put them in alphabetical order above, or in order inside the appropriate | 1351 // put them in alphabetical order above, or in order inside the appropriate |
| 1349 // ifdef at the bottom. The order should match the header. | 1352 // ifdef at the bottom. The order should match the header. |
| 1350 // ----------------------------------------------------------------------------- | 1353 // ----------------------------------------------------------------------------- |
| 1351 | 1354 |
| 1352 } // namespace switches | 1355 } // namespace switches |
| OLD | NEW |