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

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

Issue 119493005: Expose a low-end device mode override flags for non-android OSs as well (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Put low end device detection under the flag for all platforms except android. Created 6 years, 11 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
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"
11 #include "base/android/scoped_java_ref.h" 11 #include "base/android/scoped_java_ref.h"
12 #include "base/android/sys_utils.h"
13 #include "base/command_line.h" 12 #include "base/command_line.h"
14 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/sys_utils.h"
15 #include "chrome/common/chrome_switches.h" 15 #include "chrome/common/chrome_switches.h"
16 #include "content/public/common/content_switches.h" 16 #include "content/public/common/content_switches.h"
17 #include "media/base/media_switches.h" 17 #include "media/base/media_switches.h"
18 18
19 namespace { 19 namespace {
20 20
21 void SetCommandLineSwitch(const std::string& switch_string) { 21 void SetCommandLineSwitch(const std::string& switch_string) {
22 CommandLine* command_line = CommandLine::ForCurrentProcess(); 22 CommandLine* command_line = CommandLine::ForCurrentProcess();
23 if (!command_line->HasSwitch(switch_string)) 23 if (!command_line->HasSwitch(switch_string))
24 command_line->AppendSwitch(switch_string); 24 command_line->AppendSwitch(switch_string);
(...skipping 11 matching lines...) Expand all
36 void SetChromeSpecificCommandLineFlags() { 36 void SetChromeSpecificCommandLineFlags() {
37 // Turn on autologin. 37 // Turn on autologin.
38 SetCommandLineSwitch(switches::kEnableAutologin); 38 SetCommandLineSwitch(switches::kEnableAutologin);
39 39
40 // Enable prerender for the omnibox. 40 // Enable prerender for the omnibox.
41 SetCommandLineSwitchASCII( 41 SetCommandLineSwitchASCII(
42 switches::kPrerenderMode, switches::kPrerenderModeSwitchValueEnabled); 42 switches::kPrerenderMode, switches::kPrerenderModeSwitchValueEnabled);
43 SetCommandLineSwitchASCII( 43 SetCommandLineSwitchASCII(
44 switches::kPrerenderFromOmnibox, 44 switches::kPrerenderFromOmnibox,
45 switches::kPrerenderFromOmniboxSwitchValueEnabled); 45 switches::kPrerenderFromOmniboxSwitchValueEnabled);
46 if (base::android::SysUtils::IsLowEndDevice()) 46 if (base::SysUtils::IsLowEndDevice())
47 SetCommandLineSwitch(switches::kDisableSyncFavicons); 47 SetCommandLineSwitch(switches::kDisableSyncFavicons);
48 #if defined(GOOGLE_TV) 48 #if defined(GOOGLE_TV)
49 SetCommandLineSwitch(switches::kPpapiInProcess); 49 SetCommandLineSwitch(switches::kPpapiInProcess);
50 #endif 50 #endif
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698