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

Side by Side Diff: chrome/browser/android/chrome_startup_flags.cc

Issue 12319124: Enable query extraction for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed build errors Created 7 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/policy/policy_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <jni.h> 5 #include <jni.h>
6 6
7 #include "chrome/browser/android/chrome_startup_flags.h" 7 #include "chrome/browser/android/chrome_startup_flags.h"
8 8
9 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
10 #include "base/android/jni_string.h" 10 #include "base/android/jni_string.h"
(...skipping 17 matching lines...) Expand all
28 if (!command_line->HasSwitch(switch_string)) 28 if (!command_line->HasSwitch(switch_string))
29 command_line->AppendSwitchASCII(switch_string, value); 29 command_line->AppendSwitchASCII(switch_string, value);
30 } 30 }
31 31
32 } // namespace 32 } // namespace
33 33
34 void SetChromeSpecificCommandLineFlags() { 34 void SetChromeSpecificCommandLineFlags() {
35 // Turn on autologin. 35 // Turn on autologin.
36 SetCommandLineSwitch(switches::kEnableAutologin); 36 SetCommandLineSwitch(switches::kEnableAutologin);
37 37
38 // Turn on query extraction on omnibox searches.
39 SetCommandLineSwitch(switches::kEnableInstantExtendedAPI);
40
38 // Enable prerender for the omnibox. 41 // Enable prerender for the omnibox.
39 SetCommandLineSwitchASCII( 42 SetCommandLineSwitchASCII(
40 switches::kPrerenderMode, switches::kPrerenderModeSwitchValueEnabled); 43 switches::kPrerenderMode, switches::kPrerenderModeSwitchValueEnabled);
41 SetCommandLineSwitchASCII( 44 SetCommandLineSwitchASCII(
42 switches::kPrerenderFromOmnibox, 45 switches::kPrerenderFromOmnibox,
43 switches::kPrerenderFromOmniboxSwitchValueEnabled); 46 switches::kPrerenderFromOmniboxSwitchValueEnabled);
44 #if !defined(GOOGLE_TV) 47 #if !defined(GOOGLE_TV)
45 SetCommandLineSwitch(switches::kDisableEncryptedMedia); 48 SetCommandLineSwitch(switches::kDisableEncryptedMedia);
46 #endif 49 #endif
47 } 50 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/policy/policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698