diff options
Diffstat (limited to 'webkit/fileapi/file_system_url_unittest.cc')
-rw-r--r-- | webkit/fileapi/file_system_url_unittest.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/webkit/fileapi/file_system_url_unittest.cc b/webkit/fileapi/file_system_url_unittest.cc index 06d3dbd..3869616 100644 --- a/webkit/fileapi/file_system_url_unittest.cc +++ b/webkit/fileapi/file_system_url_unittest.cc @@ -139,14 +139,16 @@ TEST(FileSystemURLTest, CompareURLs) { } TEST(FileSystemURLTest, IsParent) { - ScopedExternalFileSystem scoped1("foo", kFileSystemTypeSyncable, base::FilePath()); - ScopedExternalFileSystem scoped2("bar", kFileSystemTypeSyncable, base::FilePath()); + ScopedExternalFileSystem scoped1("foo", kFileSystemTypeSyncable, + base::FilePath()); + ScopedExternalFileSystem scoped2("bar", kFileSystemTypeSyncable, + base::FilePath()); const std::string root1 = GetFileSystemRootURI( GURL("http://example.com"), kFileSystemTypeTemporary).spec(); - const std::string root2 = GetSyncableFileSystemRootURI( + const std::string root2 = sync_file_system::GetSyncableFileSystemRootURI( GURL("http://example.com"), "foo").spec(); - const std::string root3 = GetSyncableFileSystemRootURI( + const std::string root3 = sync_file_system::GetSyncableFileSystemRootURI( GURL("http://example.com"), "bar").spec(); const std::string root4 = GetFileSystemRootURI( GURL("http://chromium.org"), kFileSystemTypeTemporary).spec(); |