From dcd16611096dcc5e7651763ff888135e0fb305fc Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 15 Jul 2013 20:18:09 +0000 Subject: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the base namespace. TBR=sky Review URL: https://codereview.chromium.org/19052005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211675 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/browser/fileapi/sandbox_file_system_backend.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '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 f81af13..eb319f4 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); -- cgit v1.1