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

Unified Diff: chrome/browser/tab_contents/background_contents.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/tab_contents/background_contents.h ('k') | chrome/browser/tab_contents/interstitial_page.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/background_contents.cc
diff --git a/chrome/browser/tab_contents/background_contents.cc b/chrome/browser/tab_contents/background_contents.cc
index 2d78880c43a0d58614b17e1e1c21737e6b3a7a53..0876419ec66955431d5a577bb16436de18bfce89 100644
--- a/chrome/browser/tab_contents/background_contents.cc
+++ b/chrome/browser/tab_contents/background_contents.cc
@@ -182,6 +182,11 @@ void BackgroundContents::CreateNewWidget(int route_id,
NOTREACHED();
}
+void BackgroundContents::CreateNewFullscreenWidget(
+ int route_id, WebKit::WebPopupType popup_type) {
+ NOTREACHED();
+}
+
void BackgroundContents::ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
@@ -196,3 +201,6 @@ void BackgroundContents::ShowCreatedWidget(int route_id,
NOTIMPLEMENTED();
}
+void BackgroundContents::ShowCreatedFullscreenWidget(int route_id) {
+ NOTIMPLEMENTED();
+}
« no previous file with comments | « chrome/browser/tab_contents/background_contents.h ('k') | chrome/browser/tab_contents/interstitial_page.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698