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

Unified Diff: webkit/fileapi/file_system_quota_client_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
« no previous file with comments | « webkit/fileapi/file_system_mount_point_provider_unittest.cc ('k') | webkit/fileapi/file_system_url.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_quota_client_unittest.cc
diff --git a/webkit/fileapi/file_system_quota_client_unittest.cc b/webkit/fileapi/file_system_quota_client_unittest.cc
index 9ca9666b6099b661233d2edb3cec30e433389218..24137ebd66518e556f19d009391efaf5e16f5edd 100644
--- a/webkit/fileapi/file_system_quota_client_unittest.cc
+++ b/webkit/fileapi/file_system_quota_client_unittest.cc
@@ -133,7 +133,8 @@ class FileSystemQuotaClientTest : public testing::Test {
FileSystemType type = QuotaStorageTypeToFileSystemType(storage_type);
FileSystemFileUtil* file_util = file_system_context_->GetFileUtil(type);
- FileSystemURL url(GURL(origin_url), type, file_path);
+ FileSystemURL url = file_system_context_->CreateCrackedFileSystemURL(
+ GURL(origin_url), type, file_path);
scoped_ptr<FileSystemOperationContext> context(
CreateFileSystemOperationContext(type));
@@ -155,7 +156,8 @@ class FileSystemQuotaClientTest : public testing::Test {
FileSystemFileUtil* file_util = file_system_context_->
sandbox_provider()->GetFileUtil(type);
- FileSystemURL url(GURL(origin_url), type, file_path);
+ FileSystemURL url = file_system_context_->CreateCrackedFileSystemURL(
+ GURL(origin_url), type, file_path);
scoped_ptr<FileSystemOperationContext> context(
CreateFileSystemOperationContext(type));
« no previous file with comments | « webkit/fileapi/file_system_mount_point_provider_unittest.cc ('k') | webkit/fileapi/file_system_url.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698