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 84fec2a026b7ce83f91213114bac753291dead1a..6c4a54ebea29dc4eb1983f6af79f6db95899341d 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_info.h" |
#include "chrome/common/chrome_switches.h" |
#include "chrome/common/chrome_version_info.h" |
#include "content/public/common/content_switches.h" |
@@ -44,7 +44,7 @@ void SetChromeSpecificCommandLineFlags() { |
switches::kPrerenderFromOmniboxSwitchValueEnabled); |
// Disable syncing favicons on low end devices. |
- if (base::android::SysUtils::IsLowEndDevice()) |
+ if (base::SysInfo::IsLowEndDevice()) |
SetCommandLineSwitchASCII(switches::kDisableSyncTypes, "Favicon Images"); |
// Enable DOM Distiller on local builds, canary and dev-channel. |