Index: webkit/fileapi/file_system_mount_point_provider_unittest.cc |
diff --git a/webkit/fileapi/file_system_mount_point_provider_unittest.cc b/webkit/fileapi/file_system_mount_point_provider_unittest.cc |
index 9c925a00a192675b34aa80688162a4455db0ddef..405c3ce0cf9c539d58ba32b6e8923ca0d5a8c06d 100644 |
--- a/webkit/fileapi/file_system_mount_point_provider_unittest.cc |
+++ b/webkit/fileapi/file_system_mount_point_provider_unittest.cc |
@@ -236,9 +236,10 @@ class FileSystemMountPointProviderTest : public testing::Test { |
FilePath virtual_path = FilePath(); |
if (type == kFileSystemTypeExternal) |
virtual_path = FilePath(kVirtualPath); |
+ FileSystemURL url = file_system_context_->CreateCrackedFileSystemURL( |
+ origin_url, type, virtual_path); |
FilePath returned_root_path = |
- provider(type)->GetFileSystemRootPathOnFileThread( |
- FileSystemURL(origin_url, type, virtual_path), create); |
+ provider(type)->GetFileSystemRootPathOnFileThread(url, create); |
if (root_path) |
*root_path = returned_root_path; |
return !returned_root_path.empty(); |