Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 215733002: Add support to enable EmbeddedSearch API in Android Chrome search results page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 "enable-zero-suggest-most-visited"; 1327 "enable-zero-suggest-most-visited";
1328 1328
1329 // Enables zero suggest functionality on Dev channel, showing recently typed 1329 // Enables zero suggest functionality on Dev channel, showing recently typed
1330 // queries as default suggestions. 1330 // queries as default suggestions.
1331 const char kEnableZeroSuggestPersonalized[] = 1331 const char kEnableZeroSuggestPersonalized[] =
1332 "enable-zero-suggest-personalized"; 1332 "enable-zero-suggest-personalized";
1333 1333
1334 // Enables instant search clicks feature. 1334 // Enables instant search clicks feature.
1335 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks"; 1335 const char kEnableInstantSearchClicks[] = "enable-instant-search-clicks";
1336 1336
1337 // Enables EmbeddedSearch API in the search results page.
1338 const char kEnableEmbeddedSearchAPI[] = "enable-embeddedsearch-api";
1339
1337 #endif 1340 #endif
1338 1341
1339 #if defined(USE_ASH) 1342 #if defined(USE_ASH)
1340 const char kOpenAsh[] = "open-ash"; 1343 const char kOpenAsh[] = "open-ash";
1341 #endif 1344 #endif
1342 1345
1343 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 1346 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1344 // Specifies which password store to use (detect, default, gnome, kwallet). 1347 // Specifies which password store to use (detect, default, gnome, kwallet).
1345 const char kPasswordStore[] = "password-store"; 1348 const char kPasswordStore[] = "password-store";
1346 #endif 1349 #endif
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 1441
1439 // ----------------------------------------------------------------------------- 1442 // -----------------------------------------------------------------------------
1440 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1443 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1441 // 1444 //
1442 // You were going to just dump your switches here, weren't you? Instead, please 1445 // You were going to just dump your switches here, weren't you? Instead, please
1443 // put them in alphabetical order above, or in order inside the appropriate 1446 // put them in alphabetical order above, or in order inside the appropriate
1444 // ifdef at the bottom. The order should match the header. 1447 // ifdef at the bottom. The order should match the header.
1445 // ----------------------------------------------------------------------------- 1448 // -----------------------------------------------------------------------------
1446 1449
1447 } // namespace switches 1450 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698