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

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

Issue 1996193003: Add support for calling the java Callback from native. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 months 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/callback_android.h ('k') | base/android/java/src/org/chromium/base/Callback.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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/callback_android.h"
6
7 #include "jni/Callback_jni.h"
8
9 namespace base {
10 namespace android {
11
12 void RunCallbackAndroid(const JavaRef<jobject>& callback,
13 const JavaRef<jobject>& arg) {
14 Java_Callback_onResultFromNativeV_JLO(base::android::AttachCurrentThread(),
15 callback.obj(),
16 arg.obj());
17 }
18
19 void RunCallbackAndroid(const JavaRef<jobject>& callback, bool arg) {
20 Java_Callback_onResultFromNativeV_Z(base::android::AttachCurrentThread(),
21 callback.obj(),
22 static_cast<jboolean>(arg));
23 }
24
25 bool RegisterCallbackAndroid(JNIEnv* env) {
26 return RegisterNativesImpl(env);
27 }
28
29 } // namespace android
30 } // namespace base
OLDNEW
« no previous file with comments | « base/android/callback_android.h ('k') | base/android/java/src/org/chromium/base/Callback.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698