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

Unified Diff: WebCore/page/SecurityOrigin.cpp

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/PublicURLManager.h ('k') | WebCore/platform/AsyncFileSystemCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « WebCore/html/PublicURLManager.h ('k') | WebCore/platform/AsyncFileSystemCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698