Title: [139711] trunk/Source/WebCore
Revision
139711
Author
[email protected]
Date
2013-01-14 21:15:31 -0800 (Mon, 14 Jan 2013)

Log Message

[Chromium] Use explicit WebKit prefixes in BlobRegistryProxy
https://bugs.webkit.org/show_bug.cgi?id=106859

Reviewed by Adam Barth.

As requested in https://bugs.webkit.org/show_bug.cgi?id=106831#c2

* platform/network/chromium/BlobRegistryProxy.cpp:
(WebCore::BlobRegistryProxy::registerBlobURL):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139710 => 139711)


--- trunk/Source/WebCore/ChangeLog	2013-01-15 05:06:50 UTC (rev 139710)
+++ trunk/Source/WebCore/ChangeLog	2013-01-15 05:15:31 UTC (rev 139711)
@@ -1,3 +1,15 @@
+2013-01-14  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Use explicit WebKit prefixes in BlobRegistryProxy
+        https://bugs.webkit.org/show_bug.cgi?id=106859
+
+        Reviewed by Adam Barth.
+
+        As requested in https://bugs.webkit.org/show_bug.cgi?id=106831#c2
+
+        * platform/network/chromium/BlobRegistryProxy.cpp:
+        (WebCore::BlobRegistryProxy::registerBlobURL):
+
 2013-01-14  Max Vujovic  <[email protected]>
 
         [ANGLE] Update ANGLE in WebKit

Modified: trunk/Source/WebCore/platform/network/chromium/BlobRegistryProxy.cpp (139710 => 139711)


--- trunk/Source/WebCore/platform/network/chromium/BlobRegistryProxy.cpp	2013-01-15 05:06:50 UTC (rev 139710)
+++ trunk/Source/WebCore/platform/network/chromium/BlobRegistryProxy.cpp	2013-01-15 05:15:31 UTC (rev 139711)
@@ -44,9 +44,6 @@
 #include <wtf/MainThread.h>
 #include <wtf/StdLibExtras.h>
 
-// We are part of the WebKit implementation.
-using namespace WebKit;
-
 namespace WebCore {
 
 BlobRegistry& blobRegistry()
@@ -64,7 +61,7 @@
 void BlobRegistryProxy::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
 {
     if (m_webBlobRegistry) {
-        WebBlobData webBlobData(blobData);
+        WebKit::WebBlobData webBlobData(blobData);
         m_webBlobRegistry->registerBlobURL(url, webBlobData);
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to