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

Unified Diff: WebCore/html/PublicURLManager.h

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 8 years 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
Index: WebCore/html/PublicURLManager.h
===================================================================
--- WebCore/html/PublicURLManager.h (revision 136547)
+++ WebCore/html/PublicURLManager.h (working copy)
@@ -27,8 +27,8 @@
#define PublicURLManager_h
#if ENABLE(BLOB)
+#include "BlobRegistry.h"
#include "ScriptExecutionContext.h"
-#include "ThreadableBlobRegistry.h"
#include <wtf/HashSet.h>
#include <wtf/text/WTFString.h>
@@ -54,7 +54,7 @@
{
HashSet<String>::iterator blobURLsEnd = m_blobURLs.end();
for (HashSet<String>::iterator iter = m_blobURLs.begin(); iter != blobURLsEnd; ++iter)
- ThreadableBlobRegistry::unregisterBlobURL(KURL(ParsedURLString, *iter));
+ blobRegistry().revokePublicBlobURL(KURL(ParsedURLString, *iter));
#if ENABLE(MEDIA_STREAM)
HashSet<String>::iterator streamURLsEnd = m_streamURLs.end();

Powered by Google App Engine
This is Rietveld 408576698