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

Unified Diff: chrome/browser/interests/android/interests_service.cc

Issue 1459593002: Added a UI for the Interests Prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: chrome/browser/interests/android/interests_service.cc
diff --git a/chrome/browser/interests/android/interests_service.cc b/chrome/browser/interests/android/interests_service.cc
index 15c45e3c7f616c0a6aeacc7063cb6ff33466773a..088f888f0d090d7fe83b4105c40c4ed50b58e981 100644
--- a/chrome/browser/interests/android/interests_service.cc
+++ b/chrome/browser/interests/android/interests_service.cc
@@ -85,9 +85,9 @@ void InterestsService::OnObtainedInterests(
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jobjectArray> j_interests =
ConvertInterestsToJava(env, interests.Pass());
- Java_GetInterestsCallback_onInterestsAvailableCallback(env,
- j_callback.obj(),
- j_interests.obj());
+ Java_GetInterestsCallback_onInterestsAvailable(env,
+ j_callback.obj(),
+ j_interests.obj());
}
static jlong Init(JNIEnv* env,

Powered by Google App Engine
This is Rietveld 408576698