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

Unified Diff: Source/platform/blob/BlobRegistry.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ 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/platform/blob/BlobData.cpp ('k') | Source/platform/exported/WebAudioBus.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/blob/BlobRegistry.cpp
diff --git a/Source/platform/blob/BlobRegistry.cpp b/Source/platform/blob/BlobRegistry.cpp
index f0897ecf0d17b52c64a0c63bcb1caa0823c3ed1c..48b0f116ce9533f9492246225a27d40ffff519b5 100644
--- a/Source/platform/blob/BlobRegistry.cpp
+++ b/Source/platform/blob/BlobRegistry.cpp
@@ -49,11 +49,6 @@
#include "wtf/text/StringHash.h"
#include "wtf/text/WTFString.h"
-using blink::WebBlobData;
-using blink::WebBlobRegistry;
-using blink::WebThreadSafeData;
-using WTF::ThreadSpecific;
-
namespace blink {
class BlobOriginCache : public SecurityOriginCache {
@@ -104,7 +99,7 @@ public:
static WebBlobRegistry* blobRegistry()
{
- return blink::Platform::current()->blobRegistry();
+ return Platform::current()->blobRegistry();
}
typedef HashMap<String, RefPtr<SecurityOrigin> > BlobURLOriginMap;
@@ -135,7 +130,7 @@ static void removeFromOriginMap(const KURL& url)
void BlobRegistry::registerBlobData(const String& uuid, PassOwnPtr<BlobData> data)
{
- blobRegistry()->registerBlobData(uuid, blink::WebBlobData(data));
+ blobRegistry()->registerBlobData(uuid, WebBlobData(data));
}
void BlobRegistry::addBlobDataRef(const String& uuid)
« no previous file with comments | « Source/platform/blob/BlobData.cpp ('k') | Source/platform/exported/WebAudioBus.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698