| 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 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1209 // Disables Contextual Search. | 1209 // Disables Contextual Search. |
| 1210 const char kDisableContextualSearch[] = "disable-contextual-search"; | 1210 const char kDisableContextualSearch[] = "disable-contextual-search"; |
| 1211 | 1211 |
| 1212 // Disables zero suggest experiment on Dev channel. | 1212 // Disables zero suggest experiment on Dev channel. |
| 1213 const char kDisableZeroSuggest[] = "disable-zero-suggest"; | 1213 const char kDisableZeroSuggest[] = "disable-zero-suggest"; |
| 1214 | 1214 |
| 1215 // Enable the accessibility tab switcher. | 1215 // Enable the accessibility tab switcher. |
| 1216 const char kEnableAccessibilityTabSwitcher[] = | 1216 const char kEnableAccessibilityTabSwitcher[] = |
| 1217 "enable-accessibility-tab-switcher"; | 1217 "enable-accessibility-tab-switcher"; |
| 1218 | 1218 |
| 1219 // Enables app install alerts. | |
| 1220 const char kEnableAppInstallAlerts[] = "enable-app-install-alerts"; | |
| 1221 | |
| 1222 // Enables Contextual Search. | 1219 // Enables Contextual Search. |
| 1223 const char kEnableContextualSearch[] = "enable-contextual-search"; | 1220 const char kEnableContextualSearch[] = "enable-contextual-search"; |
| 1224 | 1221 |
| 1225 // Enables zero suggest functionality on Dev channel, showing most visited | 1222 // Enables zero suggest functionality on Dev channel, showing most visited |
| 1226 // sites as default suggestions. | 1223 // sites as default suggestions. |
| 1227 const char kEnableZeroSuggestMostVisited[] = | 1224 const char kEnableZeroSuggestMostVisited[] = |
| 1228 "enable-zero-suggest-most-visited"; | 1225 "enable-zero-suggest-most-visited"; |
| 1229 | 1226 |
| 1230 // Enable zero suggest functionality on Dev channel, showing most visited | 1227 // Enable zero suggest functionality on Dev channel, showing most visited |
| 1231 // sites on non-search-result pages as default suggestions. | 1228 // sites on non-search-result pages as default suggestions. |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 | 1379 |
| 1383 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
| 1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1385 // | 1382 // |
| 1386 // 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 |
| 1387 // 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 |
| 1388 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
| 1389 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
| 1390 | 1387 |
| 1391 } // namespace switches | 1388 } // namespace switches |
| OLD | NEW |