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

Unified Diff: Source/web/FullscreenController.cpp

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/FullscreenController.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.cpp
diff --git a/Source/web/FullscreenController.cpp b/Source/web/FullscreenController.cpp
index 72367241df7d670c382c6c1773a8e2d4cc9e6708..7c1215b456474c64686c156ff96f8bda3500f028 100644
--- a/Source/web/FullscreenController.cpp
+++ b/Source/web/FullscreenController.cpp
@@ -42,7 +42,7 @@
#include "web/WebSettingsImpl.h"
#include "web/WebViewImpl.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -153,7 +153,7 @@ void FullscreenController::didExitFullScreen()
m_fullScreenFrame.clear();
}
-void FullscreenController::enterFullScreenForElement(WebCore::Element* element)
+void FullscreenController::enterFullScreenForElement(blink::Element* element)
{
if (m_webViewImpl->settingsImpl()->disallowFullscreenForNonMediaElements() && !isHTMLMediaElement(element))
return;
@@ -179,7 +179,7 @@ void FullscreenController::enterFullScreenForElement(WebCore::Element* element)
}
}
-void FullscreenController::exitFullScreenForElement(WebCore::Element* element)
+void FullscreenController::exitFullScreenForElement(blink::Element* element)
{
// The client is exiting full screen, so don't send a notification.
if (m_isCancelingFullScreen)
« no previous file with comments | « Source/web/FullscreenController.h ('k') | Source/web/GeolocationClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698