| 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_VIEW_ANDROID_H_ | 5 #ifndef UI_ANDROID_VIEW_ANDROID_H_ |
| 6 #define UI_ANDROID_VIEW_ANDROID_H_ | 6 #define UI_ANDROID_VIEW_ANDROID_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/android/jni_weak_ref.h" | 10 #include "base/android/jni_weak_ref.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "ui/android/ui_android_export.h" | 12 #include "ui/android/ui_android_export.h" |
| 13 #include "ui/android/view_client.h" | 13 #include "ui/android/view_client.h" |
| 14 #include "ui/gfx/geometry/rect_f.h" | 14 #include "ui/gfx/geometry/rect_f.h" |
| 15 | 15 |
| 16 class GURL; | |
| 17 | |
| 18 namespace cc { | 16 namespace cc { |
| 19 class Layer; | 17 class Layer; |
| 20 } | 18 } |
| 21 | 19 |
| 22 namespace ui { | 20 namespace ui { |
| 23 | 21 |
| 24 class WindowAndroid; | 22 class WindowAndroid; |
| 25 | 23 |
| 26 // A simple container for a UI layer. | 24 // A simple container for a UI layer. |
| 27 // At the root of the hierarchy is a WindowAndroid, when attached. | 25 // At the root of the hierarchy is a WindowAndroid, when attached. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 95 |
| 98 // Detaches this view from its parent. | 96 // Detaches this view from its parent. |
| 99 void RemoveFromParent(); | 97 void RemoveFromParent(); |
| 100 | 98 |
| 101 // Set the layout relative to parent. Used to do hit testing against events. | 99 // Set the layout relative to parent. Used to do hit testing against events. |
| 102 void SetLayout(int x, int y, int width, int height, bool match_parent); | 100 void SetLayout(int x, int y, int width, int height, bool match_parent); |
| 103 | 101 |
| 104 bool StartDragAndDrop(const base::android::JavaRef<jstring>& jtext, | 102 bool StartDragAndDrop(const base::android::JavaRef<jstring>& jtext, |
| 105 const base::android::JavaRef<jobject>& jimage); | 103 const base::android::JavaRef<jobject>& jimage); |
| 106 | 104 |
| 107 void OnBackgroundColorChanged(unsigned int color); | |
| 108 void OnTopControlsChanged(float top_controls_offset, | |
| 109 float top_content_offset); | |
| 110 void OnBottomControlsChanged(float bottom_controls_offset, | |
| 111 float bottom_content_offset); | |
| 112 void StartContentIntent(const GURL& content_url, | |
| 113 bool is_main_frame); | |
| 114 | |
| 115 ScopedAnchorView AcquireAnchorView(); | 105 ScopedAnchorView AcquireAnchorView(); |
| 116 void SetAnchorRect(const base::android::JavaRef<jobject>& anchor, | 106 void SetAnchorRect(const base::android::JavaRef<jobject>& anchor, |
| 117 const gfx::RectF& bounds); | 107 const gfx::RectF& bounds); |
| 118 | 108 |
| 119 // This may return null. | 109 // This may return null. |
| 120 base::android::ScopedJavaLocalRef<jobject> GetContainerView(); | 110 base::android::ScopedJavaLocalRef<jobject> GetContainerView(); |
| 121 | 111 |
| 122 protected: | 112 protected: |
| 123 // Internal implementation of ViewClient forwarding calls to the interface. | 113 // Internal implementation of ViewClient forwarding calls to the interface. |
| 124 bool OnTouchEventInternal(const MotionEventData& event); | 114 bool OnTouchEventInternal(const MotionEventData& event); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 153 bool match_parent_; // Bounds matches that of the parent if true. | 143 bool match_parent_; // Bounds matches that of the parent if true. |
| 154 | 144 |
| 155 gfx::Vector2dF content_offset_; // In CSS pixel. | 145 gfx::Vector2dF content_offset_; // In CSS pixel. |
| 156 | 146 |
| 157 DISALLOW_COPY_AND_ASSIGN(ViewAndroid); | 147 DISALLOW_COPY_AND_ASSIGN(ViewAndroid); |
| 158 }; | 148 }; |
| 159 | 149 |
| 160 } // namespace ui | 150 } // namespace ui |
| 161 | 151 |
| 162 #endif // UI_ANDROID_VIEW_ANDROID_H_ | 152 #endif // UI_ANDROID_VIEW_ANDROID_H_ |
| OLD | NEW |