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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/BlobRegistry.h ('k') | Source/platform/drm/ContentDecryptionModule.h » ('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 19aaabd0da90b71eddbedc7942d8983a89646cff..64b809918133d268ca62e65da95707da89aedb29 100644
--- a/Source/platform/blob/BlobRegistry.cpp
+++ b/Source/platform/blob/BlobRegistry.cpp
@@ -49,9 +49,9 @@
#include "wtf/text/StringHash.h"
#include "wtf/text/WTFString.h"
-using WebKit::WebBlobData;
-using WebKit::WebBlobRegistry;
-using WebKit::WebThreadSafeData;
+using blink::WebBlobData;
+using blink::WebBlobRegistry;
+using blink::WebThreadSafeData;
using WTF::ThreadSpecific;
namespace WebCore {
@@ -104,7 +104,7 @@ public:
static WebBlobRegistry* blobRegistry()
{
- return WebKit::Platform::current()->blobRegistry();
+ return blink::Platform::current()->blobRegistry();
}
typedef HashMap<String, RefPtr<SecurityOrigin> > BlobURLOriginMap;
@@ -135,7 +135,7 @@ static void removeFromOriginMap(const KURL& url)
void BlobRegistry::registerBlobData(const String& uuid, PassOwnPtr<BlobData> data)
{
- blobRegistry()->registerBlobData(uuid, WebKit::WebBlobData(data));
+ blobRegistry()->registerBlobData(uuid, blink::WebBlobData(data));
}
void BlobRegistry::addBlobDataRef(const String& uuid)
« no previous file with comments | « Source/platform/blob/BlobRegistry.h ('k') | Source/platform/drm/ContentDecryptionModule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698