diff options
author | Steve Block <steveblock@google.com> | 2010-09-29 17:32:26 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-09-29 17:35:08 +0100 |
commit | 68513a70bcd92384395513322f1b801e7bf9c729 (patch) | |
tree | 161b50f75a5921d61731bb25e730005994fcec85 /WebCore/fileapi/ThreadableBlobRegistry.h | |
parent | fd5c6425ce58eb75211be7718d5dee960842a37e (diff) | |
download | external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.zip external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.tar.gz external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.tar.bz2 |
Merge WebKit at r67908: Initial merge by Git
Change-Id: I43a553e7b3299b28cb6ee8aa035ed70fe342b972
Diffstat (limited to 'WebCore/fileapi/ThreadableBlobRegistry.h')
-rw-r--r-- | WebCore/fileapi/ThreadableBlobRegistry.h | 7 |
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 |