| 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 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 "enable-zero-suggest-most-visited"; | 1333 "enable-zero-suggest-most-visited"; |
| 1334 | 1334 |
| 1335 // Enables zero suggest functionality on Dev channel, showing recently typed | 1335 // Enables zero suggest functionality on Dev channel, showing recently typed |
| 1336 // queries as default suggestions. | 1336 // queries as default suggestions. |
| 1337 const char kEnableZeroSuggestPersonalized[] = | 1337 const char kEnableZeroSuggestPersonalized[] = |
| 1338 "enable-zero-suggest-personalized"; | 1338 "enable-zero-suggest-personalized"; |
| 1339 | 1339 |
| 1340 // Enables instant search clicks feature. | 1340 // Enables instant search clicks feature. |
| 1341 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; | 1341 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; |
| 1342 | 1342 |
| 1343 // Enables EmbeddedSearch API in the search results page. |
| 1344 const char kEnableEmbeddedSearchAPI[] = "enable-embeddedsearch-api"; |
| 1345 |
| 1343 #endif | 1346 #endif |
| 1344 | 1347 |
| 1345 #if defined(USE_ASH) | 1348 #if defined(USE_ASH) |
| 1346 const char kOpenAsh[] = "open-ash"; | 1349 const char kOpenAsh[] = "open-ash"; |
| 1347 #endif | 1350 #endif |
| 1348 | 1351 |
| 1349 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1352 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1350 // Specifies which password store to use (detect, default, gnome, kwallet). | 1353 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1351 const char kPasswordStore[] = "password-store"; | 1354 const char kPasswordStore[] = "password-store"; |
| 1352 #endif | 1355 #endif |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 | 1450 |
| 1448 // ----------------------------------------------------------------------------- | 1451 // ----------------------------------------------------------------------------- |
| 1449 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1452 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1450 // | 1453 // |
| 1451 // You were going to just dump your switches here, weren't you? Instead, please | 1454 // You were going to just dump your switches here, weren't you? Instead, please |
| 1452 // put them in alphabetical order above, or in order inside the appropriate | 1455 // put them in alphabetical order above, or in order inside the appropriate |
| 1453 // ifdef at the bottom. The order should match the header. | 1456 // ifdef at the bottom. The order should match the header. |
| 1454 // ----------------------------------------------------------------------------- | 1457 // ----------------------------------------------------------------------------- |
| 1455 | 1458 |
| 1456 } // namespace switches | 1459 } // namespace switches |
| OLD | NEW |