diff options
Diffstat (limited to 'views/view.h')
-rw-r--r-- | views/view.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/views/view.h b/views/view.h index 5ae8be5..b44c04d 100644 --- a/views/view.h +++ b/views/view.h @@ -455,6 +455,10 @@ class View : public AcceleratorTarget { // level windows (as is done for popups, bubbles and menus). virtual Window* GetWindow() const; + // Returns true if the native view |native_view| is contained in the view + // hierarchy beneath this view. + virtual bool ContainsNativeView(gfx::NativeView native_view) const; + // Get the containing RootView virtual RootView* GetRootView(); |