| 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 88c2e2396318af8a29e46a5812583fc748f80486..d30bca83f2159e07cf80c9f7fb70ee8189aa4d58 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.
|
|
|