OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 UI_ANDROID_WINDOW_ANDROID_H_ | 5 #ifndef UI_ANDROID_WINDOW_ANDROID_H_ |
6 #define UI_ANDROID_WINDOW_ANDROID_H_ | 6 #define UI_ANDROID_WINDOW_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/android/jni_weak_ref.h" | 12 #include "base/android/jni_weak_ref.h" |
13 #include "base/android/scoped_java_ref.h" | 13 #include "base/android/scoped_java_ref.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
17 #include "ui/android/ui_android_export.h" | 17 #include "ui/android/ui_android_export.h" |
| 18 #include "ui/android/view_android.h" |
18 #include "ui/gfx/geometry/vector2d_f.h" | 19 #include "ui/gfx/geometry/vector2d_f.h" |
19 | 20 |
20 namespace ui { | 21 namespace ui { |
21 | 22 |
22 class WindowAndroidCompositor; | 23 class WindowAndroidCompositor; |
23 class WindowAndroidObserver; | 24 class WindowAndroidObserver; |
24 | 25 |
25 // Android implementation of the activity window. | 26 // Android implementation of the activity window. |
26 class UI_ANDROID_EXPORT WindowAndroid { | 27 // WindowAndroid is also the root of a ViewAndroid tree. |
| 28 class UI_ANDROID_EXPORT WindowAndroid : public ViewAndroid { |
27 public: | 29 public: |
28 WindowAndroid(JNIEnv* env, jobject obj); | 30 WindowAndroid(JNIEnv* env, jobject obj); |
29 | 31 |
30 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& obj); | 32 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& obj); |
31 | 33 |
32 base::android::ScopedJavaLocalRef<jobject> GetJavaObject(); | 34 base::android::ScopedJavaLocalRef<jobject> GetJavaObject(); |
33 | 35 |
34 static bool RegisterWindowAndroid(JNIEnv* env); | 36 static bool RegisterWindowAndroid(JNIEnv* env); |
35 | 37 |
36 // The content offset is used to translate snapshots to the correct part of | 38 // The content offset is used to translate snapshots to the correct part of |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // Return whether the specified Android permission is granted. | 74 // Return whether the specified Android permission is granted. |
73 bool HasPermission(const std::string& permission); | 75 bool HasPermission(const std::string& permission); |
74 // Return whether the specified Android permission can be requested by Chrome. | 76 // Return whether the specified Android permission can be requested by Chrome. |
75 bool CanRequestPermission(const std::string& permission); | 77 bool CanRequestPermission(const std::string& permission); |
76 | 78 |
77 static WindowAndroid* createForTesting(); | 79 static WindowAndroid* createForTesting(); |
78 | 80 |
79 private: | 81 private: |
80 ~WindowAndroid(); | 82 ~WindowAndroid(); |
81 | 83 |
| 84 // ViewAndroid overrides. |
| 85 WindowAndroid* GetWindowAndroid() override; |
| 86 |
82 base::android::ScopedJavaGlobalRef<jobject> java_window_; | 87 base::android::ScopedJavaGlobalRef<jobject> java_window_; |
83 gfx::Vector2dF content_offset_; | 88 gfx::Vector2dF content_offset_; |
84 WindowAndroidCompositor* compositor_; | 89 WindowAndroidCompositor* compositor_; |
85 | 90 |
86 base::ObserverList<WindowAndroidObserver> observer_list_; | 91 base::ObserverList<WindowAndroidObserver> observer_list_; |
87 | 92 |
88 DISALLOW_COPY_AND_ASSIGN(WindowAndroid); | 93 DISALLOW_COPY_AND_ASSIGN(WindowAndroid); |
89 }; | 94 }; |
90 | 95 |
91 } // namespace ui | 96 } // namespace ui |
92 | 97 |
93 #endif // UI_ANDROID_WINDOW_ANDROID_H_ | 98 #endif // UI_ANDROID_WINDOW_ANDROID_H_ |
OLD | NEW |