| Index: Source/modules/filesystem/FileSystemCallbacks.h
|
| diff --git a/Source/modules/filesystem/FileSystemCallbacks.h b/Source/modules/filesystem/FileSystemCallbacks.h
|
| index 44799f64461e40c97dc9e877444212745728991c..4363328139ede12fe108c00b3fa577c216c9afc8 100644
|
| --- a/Source/modules/filesystem/FileSystemCallbacks.h
|
| +++ b/Source/modules/filesystem/FileSystemCallbacks.h
|
| @@ -110,16 +110,13 @@ private:
|
|
|
| class ResolveURICallbacks : public FileSystemCallbacksBase {
|
| public:
|
| - static PassOwnPtr<AsyncFileSystemCallbacks> create(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*, FileSystemType, const String& filePath);
|
| - virtual void didOpenFileSystem(const String& name, const KURL& rootURL);
|
| - virtual void didResolveURL(const String& name, const KURL& rootURL, FileSystemType, const String& filePath, bool isDirectory);
|
| + static PassOwnPtr<AsyncFileSystemCallbacks> create(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*);
|
| + virtual void didResolveURL(const String& name, const KURL& rootURL, FileSystemType, const String& filePath, bool isDirectry);
|
|
|
| private:
|
| - ResolveURICallbacks(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*, FileSystemType, const String& filePath);
|
| + ResolveURICallbacks(PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, ScriptExecutionContext*);
|
| RefPtr<EntryCallback> m_successCallback;
|
| RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
|
| - FileSystemType m_type;
|
| - String m_filePath;
|
| };
|
|
|
| class MetadataCallbacks : public FileSystemCallbacksBase {
|
|
|