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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 1997413003: Revert of Add support for entering/exiting HTML fullscreen from OOPIFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « third_party/WebKit/Source/web/FullscreenController.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
index 6e7254a1f588a2724cf6aa1fa6dd4835bad82779..cc5d4b7645afc52547288c9a68e05182c15ecad1 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -194,8 +194,6 @@
// to use Page messages. https://crbug.com/599688.
page()->frameHost().visualViewport().setSize(newSize);
page()->frameHost().visualViewport().clampToBoundaries();
-
- view()->didUpdateFullScreenSize();
}
void WebFrameWidgetImpl::updateMainFrameLayoutSize()
@@ -220,12 +218,12 @@
void WebFrameWidgetImpl::didEnterFullScreen()
{
- view()->didEnterFullScreen();
+ // FIXME: Implement full screen for out-of-process iframes.
}
void WebFrameWidgetImpl::didExitFullScreen()
{
- view()->didExitFullScreen();
+ // FIXME: Implement full screen for out-of-process iframes.
}
void WebFrameWidgetImpl::beginFrame(double lastFrameTimeMonotonic)
« no previous file with comments | « third_party/WebKit/Source/web/FullscreenController.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698