| 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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1234 // Enable the accessibility tab switcher. | 1234 // Enable the accessibility tab switcher. |
| 1235 const char kEnableAccessibilityTabSwitcher[] = | 1235 const char kEnableAccessibilityTabSwitcher[] = |
| 1236 "enable-accessibility-tab-switcher"; | 1236 "enable-accessibility-tab-switcher"; |
| 1237 | 1237 |
| 1238 // Enables app install alerts. | 1238 // Enables app install alerts. |
| 1239 const char kEnableAppInstallAlerts[] = "enable-app-install-alerts"; | 1239 const char kEnableAppInstallAlerts[] = "enable-app-install-alerts"; |
| 1240 | 1240 |
| 1241 // Enables Contextual Search. | 1241 // Enables Contextual Search. |
| 1242 const char kEnableContextualSearch[] = "enable-contextual-search"; | 1242 const char kEnableContextualSearch[] = "enable-contextual-search"; |
| 1243 | 1243 |
| 1244 // Enables zero suggest functionality on Dev channel, showing contextual | |
| 1245 // suggestions (EtherSuggest) for http pages and google.com search queries. | |
| 1246 const char kEnableZeroSuggestEtherSerp[] = | |
| 1247 "enable-zero-suggest-ether-serp"; | |
| 1248 | |
| 1249 // Enables zero suggest functionality on Dev channel, showing contextual | |
| 1250 // suggestions (EtherSuggest) for http pages. | |
| 1251 const char kEnableZeroSuggestEtherNoSerp[] = | |
| 1252 "enable-zero-suggest-ether-noserp"; | |
| 1253 | |
| 1254 // Enables zero suggest functionality on Dev channel, showing most visited | 1244 // Enables zero suggest functionality on Dev channel, showing most visited |
| 1255 // sites as default suggestions. | 1245 // sites as default suggestions. |
| 1256 const char kEnableZeroSuggestMostVisited[] = | 1246 const char kEnableZeroSuggestMostVisited[] = |
| 1257 "enable-zero-suggest-most-visited"; | 1247 "enable-zero-suggest-most-visited"; |
| 1258 | 1248 |
| 1259 // Enables zero suggest functionality on Dev channel, showing recently typed | 1249 // Enable zero suggest functionality on Dev channel, showing most visited |
| 1260 // queries as default suggestions. | 1250 // sites on non-search-result pages as default suggestions. |
| 1261 const char kEnableZeroSuggestPersonalized[] = | 1251 const char kEnableZeroSuggestMostVisitedWithoutSerp[] = |
| 1262 "enable-zero-suggest-personalized"; | 1252 "enable-zero-suggest-most-visited-without-serp"; |
| 1263 | 1253 |
| 1264 // Enables instant search clicks feature. | 1254 // Enables instant search clicks feature. |
| 1265 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; | 1255 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; |
| 1266 | 1256 |
| 1267 #endif | 1257 #endif |
| 1268 | 1258 |
| 1269 #if defined(USE_ASH) | 1259 #if defined(USE_ASH) |
| 1270 const char kOpenAsh[] = "open-ash"; | 1260 const char kOpenAsh[] = "open-ash"; |
| 1271 #endif | 1261 #endif |
| 1272 | 1262 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 | 1351 |
| 1362 // ----------------------------------------------------------------------------- | 1352 // ----------------------------------------------------------------------------- |
| 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1353 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1364 // | 1354 // |
| 1365 // You were going to just dump your switches here, weren't you? Instead, please | 1355 // You were going to just dump your switches here, weren't you? Instead, please |
| 1366 // put them in alphabetical order above, or in order inside the appropriate | 1356 // put them in alphabetical order above, or in order inside the appropriate |
| 1367 // ifdef at the bottom. The order should match the header. | 1357 // ifdef at the bottom. The order should match the header. |
| 1368 // ----------------------------------------------------------------------------- | 1358 // ----------------------------------------------------------------------------- |
| 1369 | 1359 |
| 1370 } // namespace switches | 1360 } // namespace switches |
| OLD | NEW |