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

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

Issue 2139303002: Clean up around methods to enter/exit fullscreen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index 05a2cb933392fec03b0db6ba59e92dd287e0b68f..18b1206d33e1ca0c29a7dd2ab4ba0fbb68b33260 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -1952,14 +1952,14 @@ void WebViewImpl::resize(const WebSize& newSize)
newSize, topControls().height(), topControls().shrinkViewport());
}
-void WebViewImpl::didEnterFullScreen()
+void WebViewImpl::didEnterFullscreen()
{
- m_fullscreenController->didEnterFullScreen();
+ m_fullscreenController->didEnterFullscreen();
}
-void WebViewImpl::didExitFullScreen()
+void WebViewImpl::didExitFullscreen()
{
- m_fullscreenController->didExitFullScreen();
+ m_fullscreenController->didExitFullscreen();
}
void WebViewImpl::didUpdateFullScreenSize()
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698