diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents_view.h')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents_view.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_view.h b/chrome/browser/tab_contents/tab_contents_view.h index 9d2c712..48c1558 100644 --- a/chrome/browser/tab_contents/tab_contents_view.h +++ b/chrome/browser/tab_contents/tab_contents_view.h @@ -166,8 +166,9 @@ class TabContentsView : public RenderViewHostDelegate::View { // associated with the given route. When the widget needs to be shown later, // we'll look it up again and pass the object to the Show functions rather // than the route ID. - virtual RenderWidgetHostView* CreateNewWidgetInternal(int route_id, - bool activatable); + virtual RenderWidgetHostView* CreateNewWidgetInternal( + int route_id, + WebKit::WebPopupType popup_type); virtual void ShowCreatedWidgetInternal(RenderWidgetHostView* widget_host_view, const gfx::Rect& initial_pos); @@ -179,7 +180,7 @@ class TabContentsView : public RenderViewHostDelegate::View { // do some book-keeping associated with the request. The request is then // forwarded to *Internal which does platform-specific work. virtual void CreateNewWindow(int route_id); - virtual void CreateNewWidget(int route_id, bool activatable); + virtual void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type); virtual void ShowCreatedWindow(int route_id, WindowOpenDisposition disposition, const gfx::Rect& initial_pos, |