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 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1286 "enable-zero-suggest-most-visited"; | 1286 "enable-zero-suggest-most-visited"; |
1287 | 1287 |
1288 // Enables zero suggest functionality on Dev channel, showing recently typed | 1288 // Enables zero suggest functionality on Dev channel, showing recently typed |
1289 // queries as default suggestions. | 1289 // queries as default suggestions. |
1290 const char kEnableZeroSuggestPersonalized[] = | 1290 const char kEnableZeroSuggestPersonalized[] = |
1291 "enable-zero-suggest-personalized"; | 1291 "enable-zero-suggest-personalized"; |
1292 | 1292 |
1293 // Enables instant search clicks feature. | 1293 // Enables instant search clicks feature. |
1294 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; | 1294 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; |
1295 | 1295 |
1296 // Enables EmbeddedSearch API in the search results page. | |
1297 const char kEnableEmbeddedSearchAPI[] = "enable-embeddedsearch-api"; | |
1298 | |
1299 #endif | 1296 #endif |
1300 | 1297 |
1301 #if defined(USE_ASH) | 1298 #if defined(USE_ASH) |
1302 const char kOpenAsh[] = "open-ash"; | 1299 const char kOpenAsh[] = "open-ash"; |
1303 #endif | 1300 #endif |
1304 | 1301 |
1305 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1302 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
1306 // Specifies which password store to use (detect, default, gnome, kwallet). | 1303 // Specifies which password store to use (detect, default, gnome, kwallet). |
1307 const char kPasswordStore[] = "password-store"; | 1304 const char kPasswordStore[] = "password-store"; |
1308 #endif | 1305 #endif |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1398 | 1395 |
1399 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1397 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1401 // | 1398 // |
1402 // You were going to just dump your switches here, weren't you? Instead, please | 1399 // You were going to just dump your switches here, weren't you? Instead, please |
1403 // put them in alphabetical order above, or in order inside the appropriate | 1400 // put them in alphabetical order above, or in order inside the appropriate |
1404 // ifdef at the bottom. The order should match the header. | 1401 // ifdef at the bottom. The order should match the header. |
1405 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
1406 | 1403 |
1407 } // namespace switches | 1404 } // namespace switches |
OLD | NEW |