| 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();
|
|
|