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

Unified Diff: Source/web/WebBlob.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/WebBindings.cpp ('k') | Source/web/WebCache.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebBlob.cpp
diff --git a/Source/web/WebBlob.cpp b/Source/web/WebBlob.cpp
index f4ce0548e440b559713bf7b48b5f24c11a83e8d2..e28cb62799682546c5fe30ef40a30b7a39943003 100644
--- a/Source/web/WebBlob.cpp
+++ b/Source/web/WebBlob.cpp
@@ -37,8 +37,6 @@
#include "platform/blob/BlobData.h"
#include "wtf/PassOwnPtr.h"
-using namespace blink;
-
namespace blink {
WebBlob WebBlob::createFromUUID(const WebString& uuid, const WebString& type, long long size)
@@ -90,12 +88,12 @@ v8::Handle<v8::Value> WebBlob::toV8Value(v8::Handle<v8::Object> creationContext,
return toV8(m_private.get(), creationContext, isolate);
}
-WebBlob::WebBlob(const PassRefPtrWillBeRawPtr<blink::Blob>& blob)
+WebBlob::WebBlob(const PassRefPtrWillBeRawPtr<Blob>& blob)
: m_private(blob)
{
}
-WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<blink::Blob>& blob)
+WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<Blob>& blob)
{
m_private = blob;
return *this;
« no previous file with comments | « Source/web/WebBindings.cpp ('k') | Source/web/WebCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698