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

Unified Diff: components/signin/core/browser/child_account_info_fetcher_android.cc

Issue 1312153003: jni_generator: Pass object parameters as JavaParamRef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/signin/core/browser/child_account_info_fetcher_android.cc
diff --git a/components/signin/core/browser/child_account_info_fetcher_android.cc b/components/signin/core/browser/child_account_info_fetcher_android.cc
index 8b30e12c6c0a23073050c20fd31cdef925e2668f..39ec8c460443a7091d5c0ea47f2013264590ef94 100644
--- a/components/signin/core/browser/child_account_info_fetcher_android.cc
+++ b/components/signin/core/browser/child_account_info_fetcher_android.cc
@@ -33,9 +33,9 @@ bool ChildAccountInfoFetcherAndroid::Register(JNIEnv* env) {
}
void SetIsChildAccount(JNIEnv* env,
- jclass caller,
+ const JavaParamRef<jclass>& caller,
jlong native_service,
- jstring j_account_id,
+ const JavaParamRef<jstring>& j_account_id,
jboolean is_child_account) {
AccountFetcherService* service =
reinterpret_cast<AccountFetcherService*>(native_service);

Powered by Google App Engine
This is Rietveld 408576698