Index: content/child/fileapi/webfilesystem_impl.cc |
diff --git a/content/child/fileapi/webfilesystem_impl.cc b/content/child/fileapi/webfilesystem_impl.cc |
index 902c12d33e891c5edc1831b2d864c72c36b4edfd..75c47770c4fe42f86c644a3e304c683a363aaabf 100644 |
--- a/content/child/fileapi/webfilesystem_impl.cc |
+++ b/content/child/fileapi/webfilesystem_impl.cc |
@@ -14,6 +14,7 @@ |
#include "content/child/child_thread.h" |
#include "content/child/fileapi/file_system_dispatcher.h" |
#include "content/child/fileapi/webfilewriter_impl.h" |
+#include "content/common/blink_glue.h" |
#include "content/common/fileapi/file_system_messages.h" |
#include "third_party/WebKit/public/platform/WebFileInfo.h" |
#include "third_party/WebKit/public/platform/WebFileSystemCallbacks.h" |
@@ -23,7 +24,6 @@ |
#include "webkit/child/worker_task_runner.h" |
#include "webkit/common/fileapi/directory_entry.h" |
#include "webkit/common/fileapi/file_system_util.h" |
-#include "webkit/glue/webkit_glue.h" |
using blink::WebFileInfo; |
using blink::WebFileSystemCallbacks; |
@@ -188,7 +188,7 @@ void ReadMetadataCallbackAdapter(int thread_id, int callbacks_id, |
WaitableCallbackResults* waitable_results, |
const base::File::Info& file_info) { |
WebFileInfo web_file_info; |
- webkit_glue::FileInfoToWebFileInfo(file_info, &web_file_info); |
+ FileInfoToWebFileInfo(file_info, &web_file_info); |
CallbackFileSystemCallbacks( |
thread_id, callbacks_id, waitable_results, |
&WebFileSystemCallbacks::didReadMetadata, |
@@ -265,7 +265,7 @@ void DidCreateSnapshotFile( |
filesystem->GetAndUnregisterCallbacks(callbacks_id); |
WebFileInfo web_file_info; |
- webkit_glue::FileInfoToWebFileInfo(file_info, &web_file_info); |
+ FileInfoToWebFileInfo(file_info, &web_file_info); |
web_file_info.platformPath = platform_path.AsUTF16Unsafe(); |
callbacks.didCreateSnapshotFile(web_file_info); |