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

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

Issue 2316983002: Change capitalization FullScreen->Fullscreen where possible in Blink (Closed)
Patch Set: update test expectations Created 4 years, 3 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/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index c8625a81c818c6900c53bd9e13dd7e66ae9c03c3..77ac1c19124dbe6e4332e0726b48b2780d16fffd 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -829,14 +829,14 @@ void ChromeClientImpl::detachCompositorAnimationTimeline(CompositorAnimationTime
webFrame->frameWidget()->detachCompositorAnimationTimeline(compositorTimeline);
}
-void ChromeClientImpl::enterFullScreenForElement(Element* element)
+void ChromeClientImpl::enterFullscreenForElement(Element* element)
{
- m_webView->enterFullScreenForElement(element);
+ m_webView->enterFullscreenForElement(element);
}
-void ChromeClientImpl::exitFullScreenForElement(Element* element)
+void ChromeClientImpl::exitFullscreenForElement(Element* element)
{
- m_webView->exitFullScreenForElement(element);
+ m_webView->exitFullscreenForElement(element);
}
void ChromeClientImpl::clearCompositedSelection(LocalFrame* frame)
« 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