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

Unified Diff: Source/web/WebViewImpl.cpp

Issue 497723002: Merge willEnter/willExitFullScreen into didEnter/didExitFullScreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/web/WebViewImpl.cpp
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
index b3874d0e862b3018df5bbb74ea70d7e92f1ce189..20d19d4b9ffaffefb70a100fc9e44300f456c418 100644
--- a/Source/web/WebViewImpl.cpp
+++ b/Source/web/WebViewImpl.cpp
@@ -1713,21 +1713,11 @@ void WebViewImpl::willEndLiveResize()
pluginContainer->willEndLiveResize();
}
-void WebViewImpl::willEnterFullScreen()
-{
- m_fullscreenController->willEnterFullScreen();
-}
-
void WebViewImpl::didEnterFullScreen()
{
m_fullscreenController->didEnterFullScreen();
}
-void WebViewImpl::willExitFullScreen()
-{
- m_fullscreenController->willExitFullScreen();
-}
-
void WebViewImpl::didExitFullScreen()
{
m_fullscreenController->didExitFullScreen();

Powered by Google App Engine
This is Rietveld 408576698