Index: storage/browser/fileapi/file_system_url.cc |
diff --git a/storage/browser/fileapi/file_system_url.cc b/storage/browser/fileapi/file_system_url.cc |
index 26d0a97cc0e0ee112297e38824656a32a11a556c..be5285c04cedc9db242658053f9eb19410ac62bf 100644 |
--- a/storage/browser/fileapi/file_system_url.cc |
+++ b/storage/browser/fileapi/file_system_url.cc |
@@ -36,6 +36,25 @@ FileSystemURL FileSystemURL::CreateForTest(const GURL& origin, |
return FileSystemURL(origin, mount_type, virtual_path); |
} |
+FileSystemURL FileSystemURL::CreateForTest( |
+ const GURL& origin, |
+ FileSystemType mount_type, |
+ const base::FilePath& virtual_path, |
+ const std::string& mount_filesystem_id, |
+ FileSystemType cracked_type, |
+ const base::FilePath& cracked_path, |
+ const std::string& filesystem_id, |
+ const FileSystemMountOption& mount_option) { |
+ return FileSystemURL(origin, |
+ mount_type, |
+ virtual_path, |
+ mount_filesystem_id, |
+ cracked_type, |
+ cracked_path, |
+ filesystem_id, |
+ mount_option); |
+} |
+ |
FileSystemURL::FileSystemURL(const GURL& url) |
: mount_type_(kFileSystemTypeUnknown), |
type_(kFileSystemTypeUnknown), |