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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/interests/InterestsService.java

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/android/java/src/org/chromium/chrome/browser/ntp/interests/InterestsService.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/InterestsService.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/interests/InterestsService.java
similarity index 85%
rename from chrome/android/java/src/org/chromium/chrome/browser/ntp/InterestsService.java
rename to chrome/android/java/src/org/chromium/chrome/browser/ntp/interests/InterestsService.java
index 23878bd3184cb70fdd2fcccbecfdbcc0af3fb3ee..5c466b71f2dc03d578f4525412db80df80fae92b 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/InterestsService.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/interests/InterestsService.java
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package org.chromium.chrome.browser.ntp;
+package org.chromium.chrome.browser.ntp.interests;
import org.chromium.base.annotations.CalledByNative;
import org.chromium.chrome.browser.profiles.Profile;
@@ -11,6 +11,7 @@ import org.chromium.chrome.browser.profiles.Profile;
* Retrieve the user's interests.
*/
public class InterestsService {
+
private long mNativeInterestsService;
/**
@@ -49,7 +50,7 @@ public class InterestsService {
* @param interests The array of interests. Null if error.
*/
@CalledByNative("GetInterestsCallback")
- public void onInterestsAvailableCallback(Interest[] interests);
+ public void onInterestsAvailable(Interest[] interests);
}
/**
@@ -71,14 +72,7 @@ public class InterestsService {
}
public void getInterests(final GetInterestsCallback callback) {
- GetInterestsCallback wrappedCallback = new GetInterestsCallback() {
- @Override
- public void onInterestsAvailableCallback(Interest[] interests) {
- callback.onInterestsAvailableCallback(interests);
- }
- };
-
- nativeGetInterests(mNativeInterestsService, wrappedCallback);
+ nativeGetInterests(mNativeInterestsService, callback);
}
/*

Powered by Google App Engine
This is Rietveld 408576698