OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/scoped_java_ref.h" | 5 #include "base/android/scoped_java_ref.h" |
6 #include "chrome/browser/android/offline_pages/background_scheduler_bridge.h" | 6 #include "chrome/browser/android/offline_pages/background_scheduler_bridge.h" |
| 7 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" |
| 8 #include "chrome/browser/android/offline_pages/request_coordinator_factory.h" |
7 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
8 #include "chrome/browser/profiles/profile_android.h" | 10 #include "chrome/browser/profiles/profile_android.h" |
| 11 #include "components/offline_pages/background/request_coordinator.h" |
9 #include "jni/BackgroundSchedulerBridge_jni.h" | 12 #include "jni/BackgroundSchedulerBridge_jni.h" |
10 | 13 |
11 using base::android::ScopedJavaGlobalRef; | 14 using base::android::ScopedJavaGlobalRef; |
12 | 15 |
13 namespace offline_pages { | 16 namespace offline_pages { |
14 namespace android { | 17 namespace android { |
15 | 18 |
16 namespace { | 19 namespace { |
17 | 20 |
18 // C++ callback that delegates to Java callback. | 21 // C++ callback that delegates to Java callback. |
19 void ProcessingDoneCallback( | 22 void ProcessingDoneCallback( |
20 const ScopedJavaGlobalRef<jobject>& j_callback_obj, jboolean result) { | 23 const ScopedJavaGlobalRef<jobject>& j_callback_obj, jboolean result) { |
21 JNIEnv* env = base::android::AttachCurrentThread(); | 24 JNIEnv* env = base::android::AttachCurrentThread(); |
22 Java_ProcessingDoneCallback_onProcessingDone( | 25 Java_ProcessingDoneCallback_onProcessingDone( |
23 env, j_callback_obj.obj(), result); | 26 env, j_callback_obj.obj(), result); |
24 } | 27 } |
25 | 28 |
26 } // namespace | 29 } // namespace |
27 | 30 |
28 // JNI call to start request processing. | 31 // JNI call to start request processing. |
29 static jboolean StartProcessing( | 32 static jboolean StartProcessing( |
30 JNIEnv* env, | 33 JNIEnv* env, |
31 const JavaParamRef<jclass>& jcaller, | 34 const JavaParamRef<jclass>& jcaller, |
32 const JavaParamRef<jobject>& j_profile, | |
33 const JavaParamRef<jobject>& j_callback_obj) { | 35 const JavaParamRef<jobject>& j_callback_obj) { |
34 ScopedJavaGlobalRef<jobject> j_callback_ref; | 36 ScopedJavaGlobalRef<jobject> j_callback_ref; |
35 j_callback_ref.Reset(env, j_callback_obj); | 37 j_callback_ref.Reset(env, j_callback_obj); |
36 base::Bind(&ProcessingDoneCallback, j_callback_ref); | 38 base::Bind(&ProcessingDoneCallback, j_callback_ref); |
37 // TODO(dougarnett): lookup/create RequestCoordinator KeyedService | 39 // TODO(dougarnett): lookup/create RequestCoordinator KeyedService |
38 // and call StartProcessing on it with bound j_callback_obj. | 40 // and call StartProcessing on it with bound j_callback_obj. |
39 return false; | 41 return false; |
40 } | 42 } |
41 | 43 |
42 BackgroundSchedulerBridge::BackgroundSchedulerBridge() { | |
43 } | |
44 | |
45 BackgroundSchedulerBridge::~BackgroundSchedulerBridge() { | |
46 } | |
47 | |
48 void BackgroundSchedulerBridge::Schedule( | 44 void BackgroundSchedulerBridge::Schedule( |
49 const TriggerCondition& trigger_condition) { | 45 const TriggerCondition& trigger_condition) { |
50 JNIEnv* env = base::android::AttachCurrentThread(); | 46 JNIEnv* env = base::android::AttachCurrentThread(); |
51 // TODO(dougarnett): pass trigger_condition. | 47 // TODO(dougarnett): pass trigger_condition. |
52 Java_BackgroundSchedulerBridge_schedule(env); | 48 Java_BackgroundSchedulerBridge_schedule(env); |
53 } | 49 } |
54 | 50 |
55 void BackgroundSchedulerBridge::Unschedule() { | 51 void BackgroundSchedulerBridge::Unschedule() { |
56 JNIEnv* env = base::android::AttachCurrentThread(); | 52 JNIEnv* env = base::android::AttachCurrentThread(); |
57 Java_BackgroundSchedulerBridge_unschedule(env); | 53 Java_BackgroundSchedulerBridge_unschedule(env); |
58 } | 54 } |
59 | 55 |
60 bool RegisterBackgroundSchedulerBridge(JNIEnv* env) { | 56 bool RegisterBackgroundSchedulerBridge(JNIEnv* env) { |
61 return RegisterNativesImpl(env); | 57 return RegisterNativesImpl(env); |
62 } | 58 } |
63 | 59 |
64 } // namespace android | 60 } // namespace android |
65 } // namespace offline_pages | 61 } // namespace offline_pages |
OLD | NEW |