Bug 906230 - Add HardwareUtils.isLowMemoryPlatform() (r=kats)

This commit is contained in:
Lucas Rocha
2013-10-01 14:22:15 +01:00
parent 0a86953542
commit cd91d55e71
2 changed files with 63 additions and 0 deletions

View File

@@ -15,6 +15,11 @@
#ifdef ANDROID
#include <stdio.h>
// Minimum memory threshold for a device to be considered
// a low memory platform. This value has be in sync with
// Java's equivalent threshold, defined in
// mobile/android/base/util/HardwareUtils.java
#define LOW_MEMORY_THRESHOLD_KB (384 * 1024)
#endif