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

Unified Diff: Source/web/FullscreenController.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/FullscreenController.cpp » ('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 9973e1984add5353a7c174a5acdba583b1470ce3..aed212f05da7ea75e7c3c6574b8324a708f8eac5 100644
--- a/Source/web/FullscreenController.h
+++ b/Source/web/FullscreenController.h
@@ -37,7 +37,7 @@
#include "wtf/PassOwnPtr.h"
#include "wtf/RefPtr.h"
-namespace WebCore {
+namespace blink {
class Element;
class LocalFrame;
}
@@ -54,8 +54,8 @@ public:
void willExitFullScreen();
void didExitFullScreen();
- void enterFullScreenForElement(WebCore::Element*);
- void exitFullScreenForElement(WebCore::Element*);
+ void enterFullScreenForElement(blink::Element*);
+ void exitFullScreenForElement(blink::Element*);
bool isFullscreen() { return m_fullScreenFrame; }
@@ -66,14 +66,14 @@ private:
WebViewImpl* m_webViewImpl;
float m_exitFullscreenPageScaleFactor;
- WebCore::IntSize m_exitFullscreenScrollOffset;
- WebCore::FloatPoint m_exitFullscreenPinchViewportOffset;
+ blink::IntSize m_exitFullscreenScrollOffset;
+ blink::FloatPoint m_exitFullscreenPinchViewportOffset;
// If set, the WebView is transitioning to fullscreen for this element.
- RefPtrWillBePersistent<WebCore::Element> m_provisionalFullScreenElement;
+ RefPtrWillBePersistent<blink::Element> m_provisionalFullScreenElement;
// If set, the WebView is in fullscreen mode for an element in this frame.
- RefPtr<WebCore::LocalFrame> m_fullScreenFrame;
+ RefPtr<blink::LocalFrame> m_fullScreenFrame;
bool m_isCancelingFullScreen;
};
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/FullscreenController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698