| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index ab0afb6a58fae65a5a38bc432b1c3c6948ff986e..f54cd1ecfbea497d4b0285a79da91698a4487339 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -48,7 +48,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
|
|
|
| @@ -1054,7 +1053,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;
|
|
|