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

Unified Diff: webkit/fileapi/file_system_quota_client_unittest.cc

Issue 7470037: [Refactor] to rename and re-layer the file_util stack layers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed for ChromeOS again. Created 9 years, 4 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_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 b78d18724383be86cb50ca0e71d505d414f12f6d..98a3af2d39d90789edbde0f8f86a3e6e24d0801c 100644
--- a/webkit/fileapi/file_system_quota_client_unittest.cc
+++ b/webkit/fileapi/file_system_quota_client_unittest.cc
@@ -131,7 +131,7 @@ class FileSystemQuotaClientTest : public testing::Test {
}
FileSystemOperationContext* CreateFileSystemOperationContext(
- FileSystemFileUtil* file_util,
+ FileApiFileUtil* file_util,
const FilePath& virtual_path,
const std::string& origin_url,
quota::StorageType type) {
@@ -147,9 +147,8 @@ class FileSystemQuotaClientTest : public testing::Test {
bool CreateFileSystemDirectory(const FilePath& path,
const std::string& origin_url,
quota::StorageType type) {
- FileSystemFileUtil* file_util =
- file_system_context_->path_manager()->GetFileSystemFileUtil(
- QuotaStorageTypeToFileSystemType(type));
+ FileApiFileUtil* file_util = file_system_context_->path_manager()->
+ GetFileUtil(QuotaStorageTypeToFileSystemType(type));
scoped_ptr<FileSystemOperationContext> context(
CreateFileSystemOperationContext(file_util, path, origin_url, type));
@@ -168,8 +167,8 @@ class FileSystemQuotaClientTest : public testing::Test {
if (path.empty())
return false;
- FileSystemFileUtil* file_util = file_system_context_->path_manager()->
- sandbox_provider()->GetFileSystemFileUtil();
+ FileApiFileUtil* file_util = file_system_context_->path_manager()->
+ sandbox_provider()->GetFileUtil();
scoped_ptr<FileSystemOperationContext> context(
CreateFileSystemOperationContext(file_util, path, origin_url, type));

Powered by Google App Engine
This is Rietveld 408576698