OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/android/sys_utils.h" | 5 #include "base/android/sys_utils.h" |
6 | 6 |
7 #include "base/sys_info.h" | 7 #include "base/sys_info.h" |
8 #include "jni/SysUtils_jni.h" | 8 #include "jni/SysUtils_jni.h" |
9 | 9 |
10 const int64 kLowEndMemoryThreshold = 1024 * 1024 * 512; // 512 mb. | |
11 | |
12 // Defined and called by JNI | 10 // Defined and called by JNI |
13 static jboolean IsLowEndDevice(JNIEnv* env, jclass clazz) { | 11 static jboolean IsLowEndDevice(JNIEnv* env, jclass clazz) { |
14 return base::android::SysUtils::IsLowEndDevice(); | 12 return base::android::SysUtils::IsLowEndDevice(); |
15 } | 13 } |
16 | 14 |
17 namespace base { | 15 namespace base { |
18 namespace android { | 16 namespace android { |
19 | 17 |
20 bool SysUtils::Register(JNIEnv* env) { | 18 const int64 kLowEndMemoryThreshold = |
21 return RegisterNativesImpl(env); | 19 ANDROID_LOW_MEMORY_DEVICE_THRESHOLD_MB * 1024 * 1024; |
22 } | 20 |
| 21 bool SysUtils::Register(JNIEnv* env) { return RegisterNativesImpl(env); } |
23 | 22 |
24 bool SysUtils::IsLowEndDevice() { | 23 bool SysUtils::IsLowEndDevice() { |
25 return SysInfo::AmountOfPhysicalMemory() <= kLowEndMemoryThreshold; | 24 return SysInfo::AmountOfPhysicalMemory() <= kLowEndMemoryThreshold; |
26 } | 25 } |
27 | 26 |
28 SysUtils::SysUtils() { } | 27 SysUtils::SysUtils() { } |
29 | 28 |
30 } // namespace android | 29 } // namespace android |
31 } // namespace base | 30 } // namespace base |
OLD | NEW |