Index: content/child/blink_platform_impl.cc |
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc |
index 64581a17f2b268c6ebcbd293f123856cdc4fa5ee..1ab13477cbcf04244802a7972267afded99cef78 100644 |
--- a/content/child/blink_platform_impl.cc |
+++ b/content/child/blink_platform_impl.cc |
@@ -49,7 +49,6 @@ |
#include "ui/base/layout.h" |
#if defined(OS_ANDROID) |
-#include "base/android/sys_utils.h" |
#include "content/child/fling_animator_impl_android.h" |
#endif |
@@ -1059,7 +1058,7 @@ BlinkPlatformImpl::allocateAndLockDiscardableMemory(size_t bytes) { |
size_t BlinkPlatformImpl::maxDecodedImageBytes() { |
#if defined(OS_ANDROID) |
- if (base::android::SysUtils::IsLowEndDevice()) { |
+ if (base::SysInfo::IsLowEndDevice()) { |
// Limit image decoded size to 3M pixels on low end devices. |
// 4 is maximum number of bytes per pixel. |
return 3 * 1024 * 1024 * 4; |