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

Unified Diff: Source/web/WebDOMFileSystem.cpp

Issue 468083003: Cleanup namespace usage in Source/web/Web[A-H]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing 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/WebDOMEvent.cpp ('k') | Source/web/WebDOMMediaStreamTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMFileSystem.cpp
diff --git a/Source/web/WebDOMFileSystem.cpp b/Source/web/WebDOMFileSystem.cpp
index dc4fb156f9245c80bb91a4805478ec4f2bb7fd71..5bc8ccd3b0706ec4d1f8d24c3862e220c89c0f38 100644
--- a/Source/web/WebDOMFileSystem.cpp
+++ b/Source/web/WebDOMFileSystem.cpp
@@ -42,8 +42,6 @@
#include "web/WebLocalFrameImpl.h"
#include <v8.h>
-using namespace blink;
-
namespace blink {
WebDOMFileSystem WebDOMFileSystem::fromV8Value(v8::Handle<v8::Value> value)
@@ -72,7 +70,7 @@ WebDOMFileSystem WebDOMFileSystem::create(
SerializableType serializableType)
{
ASSERT(frame && toWebLocalFrameImpl(frame)->frame());
- DOMFileSystem* domFileSystem = DOMFileSystem::create(toWebLocalFrameImpl(frame)->frame()->document(), name, static_cast<blink::FileSystemType>(type), rootURL);
+ DOMFileSystem* domFileSystem = DOMFileSystem::create(toWebLocalFrameImpl(frame)->frame()->document(), name, static_cast<FileSystemType>(type), rootURL);
if (serializableType == SerializableTypeSerializable)
domFileSystem->makeClonable();
return WebDOMFileSystem(domFileSystem);
@@ -144,7 +142,7 @@ WebDOMFileSystem::WebDOMFileSystem(DOMFileSystem* domFileSystem)
{
}
-WebDOMFileSystem& WebDOMFileSystem::operator=(blink::DOMFileSystem* domFileSystem)
+WebDOMFileSystem& WebDOMFileSystem::operator=(DOMFileSystem* domFileSystem)
{
m_private = domFileSystem;
return *this;
« no previous file with comments | « Source/web/WebDOMEvent.cpp ('k') | Source/web/WebDOMMediaStreamTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698