| 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 <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/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/sys_info.h" | 14 #include "base/sys_info.h" |
| 15 #include "chrome/common/channel_info.h" | 15 #include "chrome/common/channel_info.h" |
| 16 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
| 17 #include "components/browser_sync/common/browser_sync_switches.h" | 17 #include "components/browser_sync/browser_sync_switches.h" |
| 18 #include "components/dom_distiller/core/dom_distiller_switches.h" | 18 #include "components/dom_distiller/core/dom_distiller_switches.h" |
| 19 #include "media/base/media_switches.h" | 19 #include "media/base/media_switches.h" |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 void SetCommandLineSwitch(const std::string& switch_string) { | 23 void SetCommandLineSwitch(const std::string& switch_string) { |
| 24 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 24 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 25 if (!command_line->HasSwitch(switch_string)) | 25 if (!command_line->HasSwitch(switch_string)) |
| 26 command_line->AppendSwitch(switch_string); | 26 command_line->AppendSwitch(switch_string); |
| 27 } | 27 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 40 SetCommandLineSwitchASCII(switches::kPrerenderFromOmnibox, | 40 SetCommandLineSwitchASCII(switches::kPrerenderFromOmnibox, |
| 41 switches::kPrerenderFromOmniboxSwitchValueEnabled); | 41 switches::kPrerenderFromOmniboxSwitchValueEnabled); |
| 42 | 42 |
| 43 // Disable syncing favicons on low end devices. | 43 // Disable syncing favicons on low end devices. |
| 44 if (base::SysInfo::IsLowEndDevice()) | 44 if (base::SysInfo::IsLowEndDevice()) |
| 45 SetCommandLineSwitchASCII(switches::kDisableSyncTypes, "Favicon Images"); | 45 SetCommandLineSwitchASCII(switches::kDisableSyncTypes, "Favicon Images"); |
| 46 | 46 |
| 47 // Enable DOM Distiller backend. | 47 // Enable DOM Distiller backend. |
| 48 SetCommandLineSwitch(switches::kEnableDomDistiller); | 48 SetCommandLineSwitch(switches::kEnableDomDistiller); |
| 49 } | 49 } |
| OLD | NEW |