Index: content/common/fileapi/webfilesystem_callback_dispatcher.cc |
diff --git a/content/common/fileapi/webfilesystem_callback_dispatcher.cc b/content/common/fileapi/webfilesystem_callback_dispatcher.cc |
index 02181d143a82d520edb932280aea2b02344130f8..a73ef9e2d1bb09537937e86e70bdedf7725e91c2 100644 |
--- a/content/common/fileapi/webfilesystem_callback_dispatcher.cc |
+++ b/content/common/fileapi/webfilesystem_callback_dispatcher.cc |
@@ -15,6 +15,7 @@ |
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSystem.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallbacks.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
+#include "webkit/fileapi/file_system_util.h" |
#include "webkit/glue/webkit_glue.h" |
using WebKit::WebFileInfo; |
@@ -60,7 +61,7 @@ void WebFileSystemCallbackDispatcher::DidOpenFileSystem( |
void WebFileSystemCallbackDispatcher::DidFail( |
base::PlatformFileError error_code) { |
callbacks_->didFail( |
- webkit_glue::PlatformFileErrorToWebFileError(error_code)); |
+ fileapi::PlatformFileErrorToWebFileError(error_code)); |
} |
void WebFileSystemCallbackDispatcher::DidWrite(int64 bytes, bool complete) { |