Index: Source/modules/filesystem/FileSystemCallbacks.h |
diff --git a/Source/modules/filesystem/FileSystemCallbacks.h b/Source/modules/filesystem/FileSystemCallbacks.h |
index 0c59faebbcbc2aa6d0fef59ed875bcc0227cbbbf..4363328139ede12fe108c00b3fa577c216c9afc8 100644 |
--- a/Source/modules/filesystem/FileSystemCallbacks.h |
+++ b/Source/modules/filesystem/FileSystemCallbacks.h |
@@ -110,15 +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); |
+ 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 { |