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