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..9c51f140bf1f27cbefca86d347ab278cd4ecb4da 100644 |
--- a/content/child/blink_platform_impl.cc |
+++ b/content/child/blink_platform_impl.cc |
@@ -25,6 +25,7 @@ |
#include "base/synchronization/lock.h" |
#include "base/synchronization/waitable_event.h" |
#include "base/sys_info.h" |
+#include "base/sys_utils.h" |
#include "base/time/time.h" |
#include "content/child/content_child_helpers.h" |
#include "content/child/fling_curve_configuration.h" |
@@ -48,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 |
@@ -1054,7 +1054,7 @@ BlinkPlatformImpl::allocateAndLockDiscardableMemory(size_t bytes) { |
size_t BlinkPlatformImpl::maxDecodedImageBytes() { |
#if defined(OS_ANDROID) |
- if (base::android::SysUtils::IsLowEndDevice()) { |
+ if (base::SysUtils::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; |