Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(822)

Unified Diff: webkit/fileapi/file_system_mount_point_provider_unittest.cc

Issue 11787028: New FileSystemURL cracking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test on Win Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « webkit/fileapi/file_system_file_stream_reader_unittest.cc ('k') | webkit/fileapi/file_system_quota_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698