Chromium Code Reviews| Index: Source/platform/blob/BlobRegistry.cpp |
| diff --git a/Source/platform/blob/BlobRegistry.cpp b/Source/platform/blob/BlobRegistry.cpp |
| index f0897ecf0d17b52c64a0c63bcb1caa0823c3ed1c..39bffa12aca52932bb8bb9fb59a4c60c02d9f4aa 100644 |
| --- a/Source/platform/blob/BlobRegistry.cpp |
| +++ b/Source/platform/blob/BlobRegistry.cpp |
| @@ -49,9 +49,6 @@ |
| #include "wtf/text/StringHash.h" |
| #include "wtf/text/WTFString.h" |
| -using blink::WebBlobData; |
| -using blink::WebBlobRegistry; |
| -using blink::WebThreadSafeData; |
| using WTF::ThreadSpecific; |
|
tkent
2014/08/12 09:02:34
nit: We can remove this too.
heeyoun.lee
2014/08/12 09:06:57
Done.
|
| namespace blink { |
| @@ -104,7 +101,7 @@ public: |
| static WebBlobRegistry* blobRegistry() |
| { |
| - return blink::Platform::current()->blobRegistry(); |
| + return Platform::current()->blobRegistry(); |
| } |
| typedef HashMap<String, RefPtr<SecurityOrigin> > BlobURLOriginMap; |
| @@ -135,7 +132,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) |