Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Unified Diff: chrome/browser/extensions/extension_host.cc

Issue 3055009: Use RenderWidget(Host) for full screen (Closed)
Patch Set: Add IPC::SyncMessage dependency. Fix auto complete. Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/notifications/balloon_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/notifications/balloon_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698