| Index: chrome/browser/android/chrome_startup_flags.cc
|
| diff --git a/chrome/browser/android/chrome_startup_flags.cc b/chrome/browser/android/chrome_startup_flags.cc
|
| index 93ee6ccba471ec2d4c9d9c470b35777c3a8ce76d..ab0315d86d0c1f0a69bd4385a791275d7ff09d2e 100644
|
| --- a/chrome/browser/android/chrome_startup_flags.cc
|
| +++ b/chrome/browser/android/chrome_startup_flags.cc
|
| @@ -9,9 +9,9 @@
|
| #include "base/android/jni_android.h"
|
| #include "base/android/jni_string.h"
|
| #include "base/android/scoped_java_ref.h"
|
| -#include "base/android/sys_utils.h"
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| +#include "base/sys_utils.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/chrome_version_info.h"
|
| #include "content/public/common/content_switches.h"
|
| @@ -42,7 +42,7 @@ void SetChromeSpecificCommandLineFlags() {
|
| switches::kPrerenderFromOmniboxSwitchValueEnabled);
|
|
|
| // Disable syncing favicons on low end devices.
|
| - if (base::android::SysUtils::IsLowEndDevice())
|
| + if (base::SysUtils::IsLowEndDevice())
|
| SetCommandLineSwitchASCII(switches::kDisableSyncTypes, "Favicon Images");
|
|
|
| // Enable DOM Distiller on local builds, canary and dev-channel.
|
|
|