| Index: chrome/browser/extensions/extension_host.cc
|
| diff --git a/chrome/browser/extensions/extension_host.cc b/chrome/browser/extensions/extension_host.cc
|
| index 084be1afcbf8e54a6b2d255e8ecec1a9e7b76553..7e78619d2b042039f43d81b8745c031695a5f49d 100644
|
| --- a/chrome/browser/extensions/extension_host.cc
|
| +++ b/chrome/browser/extensions/extension_host.cc
|
| @@ -527,6 +527,12 @@ void ExtensionHost::CreateNewWidget(int route_id,
|
| CreateNewWidgetInternal(route_id, popup_type);
|
| }
|
|
|
| +void ExtensionHost::CreateNewFullscreenWidget(int route_id,
|
| + WebKit::WebPopupType popup_type) {
|
| + NOTREACHED()
|
| + << "ExtensionHost does not support showing full screen popups yet.";
|
| +}
|
| +
|
| RenderWidgetHostView* ExtensionHost::CreateNewWidgetInternal(
|
| int route_id, WebKit::WebPopupType popup_type) {
|
| return delegate_view_helper_.CreateNewWidget(route_id, popup_type,
|
| @@ -555,6 +561,11 @@ void ExtensionHost::ShowCreatedWidget(int route_id,
|
| initial_pos);
|
| }
|
|
|
| +void ExtensionHost::ShowCreatedFullscreenWidget(int route_id) {
|
| + NOTREACHED()
|
| + << "ExtensionHost does not support showing full screen popups yet.";
|
| +}
|
| +
|
| void ExtensionHost::ShowCreatedWidgetInternal(
|
| RenderWidgetHostView* widget_host_view,
|
| const gfx::Rect& initial_pos) {
|
|
|