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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebViewTest.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 54dceeda47f6d8b67d9eca33cebcd26fba9979e2..cdf7fadae6491279141d047215ef138bbd62fb1b 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -1964,7 +1964,7 @@ void WebViewImpl::didExitFullscreen()
m_fullscreenController->didExitFullscreen();
}
-void WebViewImpl::didUpdateFullScreenSize()
+void WebViewImpl::didUpdateFullscreenSize()
{
m_fullscreenController->updateSize();
}
@@ -2097,14 +2097,14 @@ void WebViewImpl::themeChanged()
view->invalidateRect(damagedRect);
}
-void WebViewImpl::enterFullScreenForElement(Element* element)
+void WebViewImpl::enterFullscreenForElement(Element* element)
{
- m_fullscreenController->enterFullScreenForElement(element);
+ m_fullscreenController->enterFullscreenForElement(element);
}
-void WebViewImpl::exitFullScreenForElement(Element* element)
+void WebViewImpl::exitFullscreenForElement(Element* element)
{
- m_fullscreenController->exitFullScreenForElement(element);
+ m_fullscreenController->exitFullscreenForElement(element);
}
bool WebViewImpl::hasHorizontalScrollbar()
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698