Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: base/android/memory_pressure_listener_android.cc

Issue 1475773002: Add context_utils.h includes where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/android/jni_android.h ('k') | base/android/path_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/memory_pressure_listener_android.h" 5 #include "base/android/memory_pressure_listener_android.h"
6 6
7 #include "base/android/context_utils.h"
7 #include "base/memory/memory_pressure_listener.h" 8 #include "base/memory/memory_pressure_listener.h"
8 #include "jni/MemoryPressureListener_jni.h" 9 #include "jni/MemoryPressureListener_jni.h"
9 10
10 // Defined and called by JNI. 11 // Defined and called by JNI.
11 static void OnMemoryPressure(JNIEnv* env, 12 static void OnMemoryPressure(JNIEnv* env,
12 const JavaParamRef<jclass>& clazz, 13 const JavaParamRef<jclass>& clazz,
13 jint memory_pressure_level) { 14 jint memory_pressure_level) {
14 base::MemoryPressureListener::NotifyMemoryPressure( 15 base::MemoryPressureListener::NotifyMemoryPressure(
15 static_cast<base::MemoryPressureListener::MemoryPressureLevel>( 16 static_cast<base::MemoryPressureListener::MemoryPressureLevel>(
16 memory_pressure_level)); 17 memory_pressure_level));
17 } 18 }
18 19
19 namespace base { 20 namespace base {
20 namespace android { 21 namespace android {
21 22
22 bool MemoryPressureListenerAndroid::Register(JNIEnv* env) { 23 bool MemoryPressureListenerAndroid::Register(JNIEnv* env) {
23 return RegisterNativesImpl(env); 24 return RegisterNativesImpl(env);
24 } 25 }
25 26
26 void MemoryPressureListenerAndroid::RegisterSystemCallback(JNIEnv* env) { 27 void MemoryPressureListenerAndroid::RegisterSystemCallback(JNIEnv* env) {
27 Java_MemoryPressureListener_registerSystemCallback( 28 Java_MemoryPressureListener_registerSystemCallback(
28 env, GetApplicationContext()); 29 env, GetApplicationContext());
29 } 30 }
30 31
31 } // namespace android 32 } // namespace android
32 } // namespace base 33 } // namespace base
OLDNEW
« no previous file with comments | « base/android/jni_android.h ('k') | base/android/path_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698