summaryrefslogtreecommitdiff
path: root/chromium/ui/views/cocoa/bridged_native_widget.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/views/cocoa/bridged_native_widget.h')
-rw-r--r--chromium/ui/views/cocoa/bridged_native_widget.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/chromium/ui/views/cocoa/bridged_native_widget.h b/chromium/ui/views/cocoa/bridged_native_widget.h
index 8f6523042de..fc521597ee7 100644
--- a/chromium/ui/views/cocoa/bridged_native_widget.h
+++ b/chromium/ui/views/cocoa/bridged_native_widget.h
@@ -49,6 +49,9 @@ class VIEWS_EXPORT BridgedNativeWidget
public ui::AcceleratedWidgetMacNSView,
public BridgedNativeWidgetOwner {
public:
+ // Contains NativeViewHost->gfx::NativeView associations.
+ using AssociatedViews = std::map<const views::View*, NSView*>;
+
// Ways of changing the visibility of the bridged NSWindow.
enum WindowVisibilityState {
HIDE_WINDOW, // Hides with -[NSWindow orderOut:].
@@ -156,6 +159,12 @@ class VIEWS_EXPORT BridgedNativeWidget
// Creates a ui::Compositor which becomes responsible for drawing the window.
void CreateLayer(ui::LayerType layer_type, bool translucent);
+ // Updates |associated_views_| on NativeViewHost::Attach()/Detach().
+ void SetAssociationForView(const views::View* view, NSView* native_view);
+ void ClearAssociationForView(const views::View* view);
+ // Sorts child NSViews according to NativeViewHosts order in views hierarchy.
+ void ReorderChildViews();
+
NativeWidgetMac* native_widget_mac() { return native_widget_mac_; }
BridgedContentView* ns_view() { return bridged_view_; }
NSWindow* ns_window() { return window_; }
@@ -289,6 +298,8 @@ class VIEWS_EXPORT BridgedNativeWidget
// shadow needs to be invalidated when a frame is received for the new shape.
bool invalidate_shadow_on_frame_swap_ = false;
+ AssociatedViews associated_views_;
+
DISALLOW_COPY_AND_ASSIGN(BridgedNativeWidget);
};