summaryrefslogtreecommitdiffstats
path: root/WebCore/fileapi/ThreadableBlobRegistry.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/fileapi/ThreadableBlobRegistry.h')
-rw-r--r--WebCore/fileapi/ThreadableBlobRegistry.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/fileapi/ThreadableBlobRegistry.h b/WebCore/fileapi/ThreadableBlobRegistry.h
index 7dce6bb..fe7df7f 100644
--- a/WebCore/fileapi/ThreadableBlobRegistry.h
+++ b/WebCore/fileapi/ThreadableBlobRegistry.h
@@ -37,13 +37,12 @@ namespace WebCore {
class BlobData;
class KURL;
-class ScriptExecutionContext;
class ThreadableBlobRegistry {
public:
- static void registerBlobURL(ScriptExecutionContext*, const KURL&, PassOwnPtr<BlobData>);
- static void registerBlobURL(ScriptExecutionContext*, const KURL&, const KURL& srcURL);
- static void unregisterBlobURL(ScriptExecutionContext*, const KURL&);
+ static void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
+ static void registerBlobURL(const KURL&, const KURL& srcURL);
+ static void unregisterBlobURL(const KURL&);
};
} // namespace WebCore