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

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 7 years, 11 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 | « WebCore/html/DOMURL.cpp ('k') | WebCore/page/SecurityOrigin.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/html/PublicURLManager.h
===================================================================
--- WebCore/html/PublicURLManager.h (revision 140218)
+++ 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();
« no previous file with comments | « WebCore/html/DOMURL.cpp ('k') | WebCore/page/SecurityOrigin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698