Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: ui/android/view_android.h

Issue 2502763003: Introduce ViewRoot to forward input/view events to native (Closed)
Patch Set: no overloaded GetEventHandler Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/android/view_android.h
diff --git a/ui/android/view_android.h b/ui/android/view_android.h
index 607a1acc72ae4dad10cfc8216cd5d76831b33c6f..8b224dd3402e6f4bb2482b2b1af11dfc00cdfce0 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,51 @@ 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.
+ base::android::ScopedJavaLocalRef<jobject> CreateEventHandler();
+
+ 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);
};
+bool RegisterEventHandler(JNIEnv* env);
+
} // namespace ui
#endif // UI_ANDROID_VIEW_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698