Index: webkit/fileapi/local_file_system_operation_unittest.cc |
diff --git a/webkit/fileapi/local_file_system_operation_unittest.cc b/webkit/fileapi/local_file_system_operation_unittest.cc |
index e8015909e95cf2d452bac742e9e0bbedb41bf560..a67b1009cfd6216259ebc7652fdf82388e34a0f7 100644 |
--- a/webkit/fileapi/local_file_system_operation_unittest.cc |
+++ b/webkit/fileapi/local_file_system_operation_unittest.cc |
@@ -19,6 +19,7 @@ |
#include "webkit/fileapi/file_system_mount_point_provider.h" |
#include "webkit/fileapi/file_system_quota_util.h" |
#include "webkit/fileapi/file_system_util.h" |
+#include "webkit/fileapi/file_util_helper.h" |
#include "webkit/fileapi/local_file_system_test_helper.h" |
#include "webkit/quota/quota_manager.h" |
@@ -215,17 +216,17 @@ class LocalFileSystemOperationTest |
bool FileExists(const FilePath& virtual_path) { |
FileSystemURL path = test_helper_.CreateURL(virtual_path); |
scoped_ptr<FileSystemOperationContext> context(NewContext()); |
- if (!file_util()->PathExists(context.get(), path)) |
+ if (!FileUtilHelper::PathExists(context.get(), file_util(), path)) |
return false; |
context.reset(NewContext()); |
- return !file_util()->DirectoryExists(context.get(), path); |
+ return !FileUtilHelper::DirectoryExists(context.get(), file_util(), path); |
} |
bool DirectoryExists(const FilePath& virtual_path) { |
FileSystemURL url = test_helper_.CreateURL(virtual_path); |
scoped_ptr<FileSystemOperationContext> context(NewContext()); |
- return file_util()->DirectoryExists(context.get(), url); |
+ return FileUtilHelper::DirectoryExists(context.get(), file_util(), url); |
} |
FilePath CreateUniqueFileInDir(const FilePath& virtual_dir_path) { |