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

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

Issue 2530883002: Refactor overlay fullscreen video handling into a single callback (Closed)
Patch Set: rebase Created 4 years 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: third_party/WebKit/Source/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index fa743d87d17bf4dd41fbd7376a6a0845ac3b8c7f..52377c67a1cc7f279db6a531351cb5155e6a0ede 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -859,6 +859,11 @@ void ChromeClientImpl::exitFullscreen(LocalFrame* frame) {
m_webView->exitFullscreen(frame);
}
+void ChromeClientImpl::fullscreenElementChanged(Element* fromElement,
+ Element* toElement) {
+ m_webView->fullscreenElementChanged(fromElement, toElement);
+}
+
void ChromeClientImpl::clearCompositedSelection(LocalFrame* frame) {
LocalFrame* localRoot = frame->localFrameRoot();
auto client =
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.h ('k') | third_party/WebKit/Source/web/FullscreenController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698