OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 #ifndef CHROME_BROWSER_ANDROID_INTERESTS_SERVICE_H_ | |
Bernhard Bauer
2015/10/07 15:26:37
Can we move this file to chrome/browser/interests/
| |
6 #define CHROME_BROWSER_ANDROID_INTERESTS_SERVICE_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 #include "base/android/scoped_java_ref.h" | |
11 #include "chrome/browser/interests/interests_fetcher.h" | |
Bernhard Bauer
2015/10/07 15:26:37
You can forward-declare this and Profile.
OTOH, y
PEConn
2015/10/07 18:27:20
Done. I forward declared Profile and ScopedJavaGlo
| |
12 #include "chrome/browser/profiles/profile.h" | |
13 | |
14 // Provides a list of user interests to Java | |
15 class InterestsService { | |
16 public: | |
17 explicit InterestsService(Profile* profile); | |
18 virtual ~InterestsService(); | |
19 | |
20 void Destroy(JNIEnv* env, jobject obj); | |
21 static bool Register(JNIEnv* env); | |
22 void GetInterests(JNIEnv* env, | |
23 jobject obj, | |
24 jobject j_callback); | |
25 | |
26 private: | |
27 void OnObtainedInterests( | |
28 InterestsFetcher* fetcher, | |
29 const base::android::ScopedJavaGlobalRef<jobject>& j_callback, | |
30 scoped_ptr<std::vector<InterestsFetcher::Interest>> interests); | |
31 | |
32 static jobjectArray ConvertInterestsToJava( | |
33 scoped_ptr<std::vector<InterestsFetcher::Interest>> interests); | |
34 | |
35 Profile* profile_; | |
36 | |
37 base::WeakPtrFactory<InterestsService> weak_ptr_factory_; | |
38 | |
39 DISALLOW_COPY_AND_ASSIGN(InterestsService); | |
40 }; | |
41 | |
42 #endif // CHROME_BROWSER_ANDROID_INTERESTS_SERVICE_H_ | |
OLD | NEW |