| Index: chrome/browser/tab_contents/interstitial_page.cc
|
| diff --git a/chrome/browser/tab_contents/interstitial_page.cc b/chrome/browser/tab_contents/interstitial_page.cc
|
| index 4f422fb945e994f9c8c2c4fd37bb27c0001f9c9b..49736d90ccd50227c3d46fd446879b1d228c796a 100644
|
| --- a/chrome/browser/tab_contents/interstitial_page.cc
|
| +++ b/chrome/browser/tab_contents/interstitial_page.cc
|
| @@ -94,12 +94,15 @@ class InterstitialPage::InterstitialPageRVHViewDelegate
|
| const string16& frame_name);
|
| virtual void CreateNewWidget(int route_id,
|
| WebKit::WebPopupType popup_type);
|
| + virtual void CreateNewFullscreenWidget(int route_id,
|
| + WebKit::WebPopupType popup_type);
|
| virtual void ShowCreatedWindow(int route_id,
|
| WindowOpenDisposition disposition,
|
| const gfx::Rect& initial_pos,
|
| bool user_gesture);
|
| virtual void ShowCreatedWidget(int route_id,
|
| const gfx::Rect& initial_pos);
|
| + virtual void ShowCreatedFullscreenWidget(int route_id);
|
| virtual void ShowContextMenu(const ContextMenuParams& params);
|
| virtual void StartDragging(const WebDropData& drop_data,
|
| WebDragOperationsMask operations_allowed,
|
| @@ -571,6 +574,13 @@ void InterstitialPage::InterstitialPageRVHViewDelegate::CreateNewWidget(
|
| NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
|
| }
|
|
|
| +void
|
| +InterstitialPage::InterstitialPageRVHViewDelegate::CreateNewFullscreenWidget(
|
| + int route_id, WebKit::WebPopupType popup_type) {
|
| + NOTREACHED()
|
| + << "InterstitialPage does not support showing full screen popups.";
|
| +}
|
| +
|
| void InterstitialPage::InterstitialPageRVHViewDelegate::ShowCreatedWindow(
|
| int route_id, WindowOpenDisposition disposition,
|
| const gfx::Rect& initial_pos, bool user_gesture) {
|
| @@ -582,6 +592,13 @@ void InterstitialPage::InterstitialPageRVHViewDelegate::ShowCreatedWidget(
|
| NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
|
| }
|
|
|
| +void
|
| +InterstitialPage::InterstitialPageRVHViewDelegate::ShowCreatedFullscreenWidget(
|
| + int route_id) {
|
| + NOTREACHED()
|
| + << "InterstitialPage does not support showing full screen popups.";
|
| +}
|
| +
|
| void InterstitialPage::InterstitialPageRVHViewDelegate::ShowContextMenu(
|
| const ContextMenuParams& params) {
|
| }
|
|
|