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

Unified Diff: Source/web/FullscreenController.h

Issue 462613002: Cleanup namespace usage in Source/web/[A-V]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing comments Created 6 years, 4 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 | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/GeolocationClientProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/FullscreenController.h
diff --git a/Source/web/FullscreenController.h b/Source/web/FullscreenController.h
index aed212f05da7ea75e7c3c6574b8324a708f8eac5..4eb36d159e44ff868b7f97e97013b16676fb907b 100644
--- a/Source/web/FullscreenController.h
+++ b/Source/web/FullscreenController.h
@@ -38,11 +38,9 @@
#include "wtf/RefPtr.h"
namespace blink {
+
class Element;
class LocalFrame;
-}
-
-namespace blink {
class WebViewImpl;
class FullscreenController {
@@ -54,8 +52,8 @@ public:
void willExitFullScreen();
void didExitFullScreen();
- void enterFullScreenForElement(blink::Element*);
- void exitFullScreenForElement(blink::Element*);
+ void enterFullScreenForElement(Element*);
+ void exitFullScreenForElement(Element*);
bool isFullscreen() { return m_fullScreenFrame; }
@@ -66,19 +64,19 @@ private:
WebViewImpl* m_webViewImpl;
float m_exitFullscreenPageScaleFactor;
- blink::IntSize m_exitFullscreenScrollOffset;
- blink::FloatPoint m_exitFullscreenPinchViewportOffset;
+ IntSize m_exitFullscreenScrollOffset;
+ FloatPoint m_exitFullscreenPinchViewportOffset;
// If set, the WebView is transitioning to fullscreen for this element.
- RefPtrWillBePersistent<blink::Element> m_provisionalFullScreenElement;
+ RefPtrWillBePersistent<Element> m_provisionalFullScreenElement;
// If set, the WebView is in fullscreen mode for an element in this frame.
- RefPtr<blink::LocalFrame> m_fullScreenFrame;
+ RefPtr<LocalFrame> m_fullScreenFrame;
bool m_isCancelingFullScreen;
};
-}
+} // namespace blink
#endif
« no previous file with comments | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/GeolocationClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698