| Index: WebCore/page/SecurityOrigin.cpp
|
| ===================================================================
|
| --- WebCore/page/SecurityOrigin.cpp (revision 140218)
|
| +++ WebCore/page/SecurityOrigin.cpp (working copy)
|
| @@ -30,12 +30,12 @@
|
| #include "SecurityOrigin.h"
|
|
|
| #include "BlobURL.h"
|
| +#include "BlobRegistry.h"
|
| #include "Document.h"
|
| #include "FileSystem.h"
|
| #include "KURL.h"
|
| #include "SchemeRegistry.h"
|
| #include "SecurityPolicy.h"
|
| -#include "ThreadableBlobRegistry.h"
|
| #include <wtf/MainThread.h>
|
| #include <wtf/StdLibExtras.h>
|
| #include <wtf/text/StringBuilder.h>
|
| @@ -83,7 +83,7 @@
|
| {
|
| #if ENABLE(BLOB)
|
| if (url.protocolIs("blob"))
|
| - return ThreadableBlobRegistry::getCachedOrigin(url);
|
| + return blobRegistry().cachedUniqueOrigin(url);
|
| #endif
|
| return 0;
|
| }
|
|
|