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

Unified Diff: webkit/fileapi/file_system_test_helper.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_test_helper.cc
diff --git a/webkit/fileapi/file_system_test_helper.cc b/webkit/fileapi/file_system_test_helper.cc
index 535ad769e3257625941509477f3259cd8f9a7c59..da58d3096f57f6826412a6d9ee9c3813c5fe1af5 100644
--- a/webkit/fileapi/file_system_test_helper.cc
+++ b/webkit/fileapi/file_system_test_helper.cc
@@ -57,13 +57,12 @@ FileSystemTestOriginHelper::~FileSystemTestOriginHelper() {
}
void FileSystemTestOriginHelper::SetUp(
- const FilePath& base_dir, FileSystemFileUtil* file_util) {
+ const FilePath& base_dir, FileApiFileUtil* file_util) {
SetUp(base_dir, false, false, NULL, file_util);
}
void FileSystemTestOriginHelper::SetUp(
- FileSystemContext* file_system_context,
- FileSystemFileUtil* file_util) {
+ FileSystemContext* file_system_context, FileApiFileUtil* file_util) {
DCHECK(file_system_context->path_manager());
DCHECK(file_system_context->path_manager()->sandbox_provider());
@@ -71,7 +70,7 @@ void FileSystemTestOriginHelper::SetUp(
file_system_context_ = file_system_context;
if (!file_util_)
file_util_ = file_system_context->path_manager()->sandbox_provider()->
- GetFileSystemFileUtil();
+ GetFileUtil();
DCHECK(file_util_);
// Prepare the origin's root directory.
@@ -90,7 +89,7 @@ void FileSystemTestOriginHelper::SetUp(
bool incognito_mode,
bool unlimited_quota,
quota::QuotaManagerProxy* quota_manager_proxy,
- FileSystemFileUtil* file_util) {
+ FileApiFileUtil* file_util) {
file_util_ = file_util;
DCHECK(file_util_);
file_system_context_ = new FileSystemContext(

Powered by Google App Engine
This is Rietveld 408576698