| Index: content/browser/web_contents/web_contents_view_mac.h
|
| diff --git a/content/browser/web_contents/web_contents_view_mac.h b/content/browser/web_contents/web_contents_view_mac.h
|
| index 09b77a38f9bc20dd2f3b8d1888f42576c18b0c14..ae178732a783ac10755b11ee2840e168bc93dfd4 100644
|
| --- a/content/browser/web_contents/web_contents_view_mac.h
|
| +++ b/content/browser/web_contents/web_contents_view_mac.h
|
| @@ -85,6 +85,7 @@ class WebContentsViewMac : public WebContentsView,
|
| virtual bool IsEventTracking() const OVERRIDE;
|
| virtual void CloseTabAfterEventTracking() OVERRIDE;
|
| virtual gfx::Rect GetViewBounds() const OVERRIDE;
|
| + virtual void SetAllowOverlappingViews(bool overlapping) OVERRIDE;
|
|
|
| // Backend implementation of RenderViewHostDelegateView.
|
| virtual void ShowContextMenu(const ContextMenuParams& params,
|
| @@ -126,6 +127,9 @@ class WebContentsViewMac : public WebContentsView,
|
| // Our optional delegate.
|
| scoped_ptr<WebContentsViewDelegate> delegate_;
|
|
|
| + // Whether to allow overlapping views.
|
| + bool allow_overlapping_views_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsViewMac);
|
| };
|
|
|
|
|