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

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

Issue 2759963002: Enable Java 8 by default
Patch Set: Add example usage Created 3 years, 9 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 | « no previous file | 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
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/callback_android.h" 5 #include "base/android/callback_android.h"
6 6
7 #include "jni/Callback_jni.h" 7 #include "jni/Callback_jni.h"
8 8
9 namespace base { 9 namespace base {
10 namespace android { 10 namespace android {
11 11
12 void RunCallbackAndroid(const JavaRef<jobject>& callback, 12 void RunCallbackAndroid(const JavaRef<jobject>& callback,
13 const JavaRef<jobject>& arg) { 13 const JavaRef<jobject>& arg) {
14 Java_Callback_onResultFromNativeV_JLO(base::android::AttachCurrentThread(), 14 Java_Callback_onResultFromNativeV_OCBC_JLO(
15 callback, arg); 15 base::android::AttachCurrentThread(), callback, arg);
16 } 16 }
17 17
18 void RunCallbackAndroid(const JavaRef<jobject>& callback, bool arg) { 18 void RunCallbackAndroid(const JavaRef<jobject>& callback, bool arg) {
19 Java_Callback_onResultFromNativeV_Z(base::android::AttachCurrentThread(), 19 Java_Callback_onResultFromNativeV_OCBC_Z(base::android::AttachCurrentThread(),
20 callback, static_cast<jboolean>(arg)); 20 callback,
21 static_cast<jboolean>(arg));
21 } 22 }
22 23
23 void RunCallbackAndroid(const JavaRef<jobject>& callback, int arg) { 24 void RunCallbackAndroid(const JavaRef<jobject>& callback, int arg) {
24 Java_Callback_onResultFromNativeV_I(base::android::AttachCurrentThread(), 25 Java_Callback_onResultFromNativeV_OCBC_I(base::android::AttachCurrentThread(),
25 callback, arg); 26 callback, arg);
26 } 27 }
27 28
28 } // namespace android 29 } // namespace android
29 } // namespace base 30 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/android/java/src/org/chromium/base/Callback.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698