diff options
Diffstat (limited to 'webkit/fileapi/test_mount_point_provider.cc')
-rw-r--r-- | webkit/fileapi/test_mount_point_provider.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/fileapi/test_mount_point_provider.cc b/webkit/fileapi/test_mount_point_provider.cc index d062763..25b1630 100644 --- a/webkit/fileapi/test_mount_point_provider.cc +++ b/webkit/fileapi/test_mount_point_provider.cc @@ -66,7 +66,7 @@ class TestMountPointProvider::QuotaUtil TestMountPointProvider::TestMountPointProvider( base::SequencedTaskRunner* task_runner, - const FilePath& base_path) + const base::FilePath& base_path) : base_path_(base_path), task_runner_(task_runner), local_file_util_(new AsyncFileUtilAdapter(new LocalFileUtil())), @@ -89,7 +89,7 @@ void TestMountPointProvider::ValidateFileSystemRoot( NOTREACHED(); } -FilePath TestMountPointProvider::GetFileSystemRootPathOnFileThread( +base::FilePath TestMountPointProvider::GetFileSystemRootPathOnFileThread( const FileSystemURL& url, bool create) { DCHECK_EQ(kFileSystemTypeTest, url.type()); @@ -98,7 +98,7 @@ FilePath TestMountPointProvider::GetFileSystemRootPathOnFileThread( success = file_util::CreateDirectory(base_path_); else success = file_util::DirectoryExists(base_path_); - return success ? base_path_ : FilePath(); + return success ? base_path_ : base::FilePath(); } bool TestMountPointProvider::IsAccessAllowed(const FileSystemURL& url) { @@ -106,7 +106,7 @@ bool TestMountPointProvider::IsAccessAllowed(const FileSystemURL& url) { } bool TestMountPointProvider::IsRestrictedFileName( - const FilePath& filename) const { + const base::FilePath& filename) const { return false; } |