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

Unified Diff: Source/web/WebViewImpl.cpp

Issue 428633004: Webkit setting for embedders that do not support fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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: Source/web/WebViewImpl.cpp
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
index 92175fd6a8a5a120555b88b7b169f7b5fecd4e28..31429882674d902bc54ac908ad9f01f7950c99ef 100644
--- a/Source/web/WebViewImpl.cpp
+++ b/Source/web/WebViewImpl.cpp
@@ -1692,6 +1692,11 @@ void WebViewImpl::willEndLiveResize()
pluginContainer->willEndLiveResize();
}
+bool WebViewImpl::fullscreenEnabled(blink::Element* element)
+{
+ return m_fullscreenController->fullscreenEnabled(element);
+}
+
void WebViewImpl::willEnterFullScreen()
{
m_fullscreenController->willEnterFullScreen();

Powered by Google App Engine
This is Rietveld 408576698