OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ |
6 #define COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
11 #include "components/dom_distiller/core/distilled_page_prefs.h" | 11 #include "components/dom_distiller/core/distilled_page_prefs.h" |
12 | 12 |
13 namespace dom_distiller { | 13 namespace dom_distiller { |
14 namespace android { | 14 namespace android { |
15 | 15 |
16 class DistilledPagePrefsAndroid { | 16 class DistilledPagePrefsAndroid { |
17 public: | 17 public: |
18 DistilledPagePrefsAndroid(JNIEnv* env, | 18 DistilledPagePrefsAndroid(JNIEnv* env, |
19 jobject obj, | 19 jobject obj, |
20 DistilledPagePrefs* distillerPagePrefsPtr); | 20 DistilledPagePrefs* distillerPagePrefsPtr); |
nyquist
2014/07/22 22:51:37
this should use _ instead of camelcase.
sunangel
2014/07/23 16:22:04
Done.
| |
21 virtual ~DistilledPagePrefsAndroid(); | 21 virtual ~DistilledPagePrefsAndroid(); |
22 static bool Register(JNIEnv* env); | 22 static bool Register(JNIEnv* env); |
23 void SetTheme(JNIEnv* env, jobject obj, jint theme); | 23 void SetTheme(JNIEnv* env, jobject obj, jint theme); |
24 jint GetTheme(JNIEnv* env, jobject obj); | 24 jint GetTheme(JNIEnv* env, jobject obj); |
25 void AddObserver(JNIEnv* env, jobject obj, jlong obs); | |
26 void RemoveObserver(JNIEnv* env, jobject obj, jlong obs); | |
25 | 27 |
26 private: | 28 private: |
27 DistilledPagePrefs* distilled_page_prefs_; | 29 DistilledPagePrefs* distilled_page_prefs_; |
28 | 30 |
29 DISALLOW_COPY_AND_ASSIGN(DistilledPagePrefsAndroid); | 31 DISALLOW_COPY_AND_ASSIGN(DistilledPagePrefsAndroid); |
30 }; | 32 }; |
31 | 33 |
32 } // namespace android | 34 } // namespace android |
33 } // namespace dom_distiller | 35 } // namespace dom_distiller |
34 | 36 |
35 #endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ | 37 #endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_ANDROID_H_ |
OLD | NEW |