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

Unified Diff: Source/web/FullscreenController.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates 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.cpp ('k') | Source/web/GeolocationClientProxy.cpp » ('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 6c1aa5fe4a9e3dca85325a4b3473fe0b7566513e..7a269bf330f6d3de3eed49384b6f8b7b375602f2 100644
--- a/Source/web/FullscreenController.cpp
+++ b/Source/web/FullscreenController.cpp
@@ -42,8 +42,6 @@
#include "web/WebSettingsImpl.h"
#include "web/WebViewImpl.h"
-using namespace blink;
-
namespace blink {
PassOwnPtr<FullscreenController> FullscreenController::create(WebViewImpl* webViewImpl)
@@ -153,7 +151,7 @@ void FullscreenController::didExitFullScreen()
m_fullScreenFrame.clear();
}
-void FullscreenController::enterFullScreenForElement(blink::Element* element)
+void FullscreenController::enterFullScreenForElement(Element* element)
{
// We are already transitioning to fullscreen for a different element.
if (m_provisionalFullScreenElement) {
@@ -176,7 +174,7 @@ void FullscreenController::enterFullScreenForElement(blink::Element* element)
}
}
-void FullscreenController::exitFullScreenForElement(blink::Element* element)
+void FullscreenController::exitFullScreenForElement(Element* element)
{
// The client is exiting full screen, so don't send a notification.
if (m_isCancelingFullScreen)
@@ -185,5 +183,5 @@ void FullscreenController::exitFullScreenForElement(blink::Element* element)
client->exitFullScreen();
}
-}
+} // namespace blink
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/GeolocationClientProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698