Index: ui/android/view_android.h |
diff --git a/ui/android/view_android.h b/ui/android/view_android.h |
index 607a1acc72ae4dad10cfc8216cd5d76831b33c6f..59bf58972b2e4f5f4bd8135b70dd263318a86c78 100644 |
--- a/ui/android/view_android.h |
+++ b/ui/android/view_android.h |
@@ -18,6 +18,7 @@ class Layer; |
namespace ui { |
+class ViewClient; |
class WindowAndroid; |
// A simple container for a UI layer. |
@@ -54,17 +55,20 @@ class UI_ANDROID_EXPORT ViewAndroid { |
// Default copy/assign disabled by move constructor. |
}; |
- // A ViewAndroid may have its own delegate or otherwise will |
- // use the next available parent's delegate. |
- ViewAndroid(const base::android::JavaRef<jobject>& delegate); |
+ explicit ViewAndroid(ViewClient* client); |
ViewAndroid(); |
+ |
virtual ~ViewAndroid(); |
// Returns the window at the root of this hierarchy, or |null| |
// if disconnected. |
virtual WindowAndroid* GetWindowAndroid() const; |
+ // Returns |EventHandler| associated with the current ViewAndroid. |
+ // Create one if not present. |
+ base::android::ScopedJavaLocalRef<jobject> GetEventHandler(); |
+ |
// Used to return and set the layer for this view. May be |null|. |
cc::Layer* GetLayer() const; |
void SetLayer(scoped_refptr<cc::Layer> layer); |
@@ -84,25 +88,55 @@ class UI_ANDROID_EXPORT ViewAndroid { |
void SetAnchorRect(const base::android::JavaRef<jobject>& anchor, |
const gfx::RectF& bounds); |
+ gfx::Size GetPhysicalBackingSize(); |
+ void UpdateLayerBounds(); |
+ |
+ // Internal implementation of ViewClient forwarding calls to the interface. |
+ void OnPhysicalBackingSizeChanged(int width, int height); |
+ |
protected: |
ViewAndroid* parent_; |
private: |
void RemoveChild(ViewAndroid* child); |
+ // Checks if any ViewAndroid instance in the tree hierarchy (including |
+ // all the parents and the children) has |EventHandler| already. |
+ bool HasEventHandlerInTreeHierarchy(); |
+ |
+ // Checks if any children (plus this ViewAndroid itself) has |EventHandler|. |
+ bool HasEventHandlerInSubtree(); |
+ |
// Returns the Java delegate for this view. This is used to delegate work |
// up to the embedding view (or the embedder that can deal with the |
// implementation details). |
const base::android::ScopedJavaLocalRef<jobject> |
GetViewAndroidDelegate() const; |
+ // Creates a new |EventHandler| for this ViewAndroid. No parent or child |
+ // should have |EventHandler| for this ViewAndroid to have one. |
+ virtual base::android::ScopedJavaLocalRef<jobject> CreateEventHandler(); |
boliu
2016/12/14 00:58:12
doesn't need to be virtual anymore
Jinsuk Kim
2016/12/14 01:14:14
Done.
|
+ |
+ bool HasEventHandler(); |
+ |
std::list<ViewAndroid*> children_; |
scoped_refptr<cc::Layer> layer_; |
JavaObjectWeakGlobalRef delegate_; |
+ JavaObjectWeakGlobalRef event_handler_; |
+ ViewClient* const client_; |
+ |
+ int physical_width_pix_; |
+ int physical_height_pix_; |
DISALLOW_COPY_AND_ASSIGN(ViewAndroid); |
}; |
+void OnDestroyNativeView( |
boliu
2016/12/14 00:58:12
hmm?
Jinsuk Kim
2016/12/14 01:14:14
.... removed.
|
+ JNIEnv* env, |
+ const base::android::ScopedJavaLocalRef<jobject>& event_handler); |
+ |
+bool RegisterEventHandler(JNIEnv* env); |
+ |
} // namespace ui |
#endif // UI_ANDROID_VIEW_ANDROID_H_ |