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

Unified Diff: chrome/browser/tab_contents/interstitial_page.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
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) {
}
« no previous file with comments | « chrome/browser/tab_contents/background_contents.cc ('k') | chrome/browser/tab_contents/render_view_host_delegate_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698