Index: Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp |
diff --git a/Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp b/Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp |
index a0c7525956ebcba91ffd9b37653a97e009f6283c..2430c54e4e02dddad89fa9abe66139adf69e399c 100644 |
--- a/Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp |
+++ b/Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp |
@@ -128,6 +128,13 @@ void WebFileSystemCallbacks::didOpenFileSystem(const WebString& name, const WebU |
m_private.reset(); |
} |
+void WebFileSystemCallbacks::didResolveURL(const WebString& name, const WebURL& rootURL, WebFileSystemType type, const WebString& filePath, bool isDirectory) |
+{ |
+ ASSERT(!m_private.isNull()); |
+ m_private->callbacks()->didResolveURL(name, rootURL, static_cast<WebCore::FileSystemType>(type), filePath, isDirectory); |
+ m_private.reset(); |
+} |
+ |
void WebFileSystemCallbacks::didCreateFileWriter(WebFileWriter* webFileWriter, long long length) |
{ |
ASSERT(!m_private.isNull()); |