12345678910111213141516171819202122232425 |
- #ifndef BASE_ANDROID_JAVA_RUNTIME_H_
- #define BASE_ANDROID_JAVA_RUNTIME_H_
- #include "base/android/scoped_java_ref.h"
- #include "base/base_export.h"
- namespace base {
- namespace android {
- class BASE_EXPORT JavaRuntime {
- public:
-
-
- static void GetMemoryUsage(long* total_memory, long* free_memory);
- };
- }
- }
- #endif
|