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

Unified Diff: third_party/WebKit/Source/web/FullscreenController.h

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/FullscreenController.h
diff --git a/third_party/WebKit/Source/web/FullscreenController.h b/third_party/WebKit/Source/web/FullscreenController.h
index ab4990582800751dcee97ecdaf02fef7e15c6322..94804fc01cb3c1aa7c33339cdcde6205f1eac712 100644
--- a/third_party/WebKit/Source/web/FullscreenController.h
+++ b/third_party/WebKit/Source/web/FullscreenController.h
@@ -49,10 +49,10 @@ public:
void didEnterFullscreen();
void didExitFullscreen();
- void enterFullScreenForElement(Element*);
- void exitFullScreenForElement(Element*);
+ void enterFullscreenForElement(Element*);
+ void exitFullscreenForElement(Element*);
- bool isFullscreen() { return m_fullScreenFrame; }
+ bool isFullscreen() { return m_fullscreenFrame; }
void updateSize();
@@ -75,12 +75,12 @@ private:
bool m_needsScrollAndScaleRestore;
// If set, the WebView is transitioning to fullscreen for this element.
- Member<Element> m_provisionalFullScreenElement;
+ Member<Element> m_provisionalFullscreenElement;
// If set, the WebView is in fullscreen mode for an element in this frame.
- Member<LocalFrame> m_fullScreenFrame;
+ Member<LocalFrame> m_fullscreenFrame;
- bool m_isCancelingFullScreen;
+ bool m_isCancelingFullscreen;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.cpp ('k') | third_party/WebKit/Source/web/FullscreenController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698