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

Unified Diff: webkit/fileapi/file_system_file_stream_reader_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_file_stream_reader_unittest.cc
diff --git a/webkit/fileapi/file_system_file_stream_reader_unittest.cc b/webkit/fileapi/file_system_file_stream_reader_unittest.cc
index 456e30d4162ce4207d8310fc2867bb3e257303d1..ad9886a0336c20cd3a213ed173b9dca0e75337a3 100644
--- a/webkit/fileapi/file_system_file_stream_reader_unittest.cc
+++ b/webkit/fileapi/file_system_file_stream_reader_unittest.cc
@@ -145,9 +145,10 @@ class FileSystemFileStreamReaderTest : public testing::Test {
}
FileSystemURL GetFileSystemURL(const std::string& file_name) {
- return FileSystemURL(GURL(kURLOrigin),
- kFileSystemTypeTemporary,
- FilePath().AppendASCII(file_name));
+ return file_system_context_->CreateCrackedFileSystemURL(
+ GURL(kURLOrigin),
+ kFileSystemTypeTemporary,
+ FilePath().AppendASCII(file_name));
}
MessageLoop message_loop_;

Powered by Google App Engine
This is Rietveld 408576698