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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.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
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 c1269317393454dffa9da62f95d05576233f3e96..2195baa3385fcc84d41f62e1858d95c76c29779e 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -228,14 +228,14 @@ void WebFrameWidgetImpl::setIgnoreInputEvents(bool newValue)
m_ignoreInputEvents = newValue;
}
-void WebFrameWidgetImpl::didEnterFullScreen()
+void WebFrameWidgetImpl::didEnterFullscreen()
{
- view()->didEnterFullScreen();
+ view()->didEnterFullscreen();
}
-void WebFrameWidgetImpl::didExitFullScreen()
+void WebFrameWidgetImpl::didExitFullscreen()
{
- view()->didExitFullScreen();
+ view()->didExitFullscreen();
}
void WebFrameWidgetImpl::beginFrame(double lastFrameTimeMonotonic)
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.h ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698