| 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 d22aead0b27af18bdfd385dd50095185fdad9446..2fd1cd04b34b99573bfe0aa0ba2589b86614385f 100644
|
| --- a/chrome/browser/tab_contents/interstitial_page.cc
|
| +++ b/chrome/browser/tab_contents/interstitial_page.cc
|
| @@ -88,7 +88,8 @@ class InterstitialPage::InterstitialPageRVHViewDelegate
|
| // RenderViewHostDelegate::View implementation:
|
| virtual void CreateNewWindow(
|
| int route_id,
|
| - WindowContainerType window_container_type);
|
| + WindowContainerType window_container_type,
|
| + const string16& frame_name);
|
| virtual void CreateNewWidget(int route_id,
|
| WebKit::WebPopupType popup_type);
|
| virtual void ShowCreatedWindow(int route_id,
|
| @@ -560,7 +561,8 @@ InterstitialPage::InterstitialPageRVHViewDelegate::
|
|
|
| void InterstitialPage::InterstitialPageRVHViewDelegate::CreateNewWindow(
|
| int route_id,
|
| - WindowContainerType window_container_type) {
|
| + WindowContainerType window_container_type,
|
| + const string16& frame_name) {
|
| NOTREACHED() << "InterstitialPage does not support showing popups yet.";
|
| }
|
|
|
|
|