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

Unified Diff: webkit/fileapi/isolated_file_util_unittest.cc

Issue 11787028: New FileSystemURL cracking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Couple of nits I noticed 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/isolated_file_util_unittest.cc
diff --git a/webkit/fileapi/isolated_file_util_unittest.cc b/webkit/fileapi/isolated_file_util_unittest.cc
index 9a5b48e6215a63b8acb57e5ae653225361921b7e..bfd785228c57e411c065538af0d74c792acaa629 100644
--- a/webkit/fileapi/isolated_file_util_unittest.cc
+++ b/webkit/fileapi/isolated_file_util_unittest.cc
@@ -114,9 +114,10 @@ class IsolatedFileUtilTest : public testing::Test {
FileSystemURL GetFileSystemURL(const FilePath& path) const {
FilePath virtual_path = isolated_context()->CreateVirtualRootPath(
filesystem_id()).Append(path);
- return FileSystemURL(GURL("http://example.com"),
- kFileSystemTypeIsolated,
- virtual_path);
+ return file_system_context_->CreateCrackedFileSystemURL(
+ GURL("http://example.com"),
+ kFileSystemTypeIsolated,
+ virtual_path);
}
FileSystemURL GetOtherFileSystemURL(const FilePath& path) {

Powered by Google App Engine
This is Rietveld 408576698