123456789101112131415161718192021222324 |
- #ifndef BASE_ANDROID_SYS_UTILS_H_
- #define BASE_ANDROID_SYS_UTILS_H_
- #include "base/android/jni_android.h"
- namespace base {
- namespace android {
- class BASE_EXPORT SysUtils {
- public:
-
- static bool IsLowEndDeviceFromJni();
-
- static bool IsCurrentlyLowMemory();
- };
- }
- }
- #endif
|