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