| Index: webkit/browser/fileapi/sandbox_file_system_backend.cc
|
| diff --git a/webkit/browser/fileapi/sandbox_file_system_backend.cc b/webkit/browser/fileapi/sandbox_file_system_backend.cc
|
| index f81af133bee00605e26d309b7a17961bafe99889..eb319f4c4efbc0c8a8db80d198950a7e4baa51f7 100644
|
| --- a/webkit/browser/fileapi/sandbox_file_system_backend.cc
|
| +++ b/webkit/browser/fileapi/sandbox_file_system_backend.cc
|
| @@ -403,7 +403,7 @@ int64 SandboxFileSystemBackend::GetOriginUsageOnFileThread(
|
|
|
| base::FilePath base_path =
|
| GetBaseDirectoryForOriginAndType(origin_url, type, false);
|
| - if (base_path.empty() || !file_util::DirectoryExists(base_path))
|
| + if (base_path.empty() || !base::DirectoryExists(base_path))
|
| return 0;
|
| base::FilePath usage_file_path =
|
| base_path.Append(FileSystemUsageCache::kUsageFileName);
|
|
|