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

Unified Diff: webkit/fileapi/file_system_operation_context.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: Rebased. Created 9 years, 5 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_operation_context.cc
diff --git a/webkit/fileapi/file_system_operation_context.cc b/webkit/fileapi/file_system_operation_context.cc
index bfd50554b080efb20cb06357b18a5c77c8e30091..f825aac3e99e72c9c52b31106d801daf2b123b22 100644
--- a/webkit/fileapi/file_system_operation_context.cc
+++ b/webkit/fileapi/file_system_operation_context.cc
@@ -11,10 +11,10 @@ namespace fileapi {
FileSystemOperationContext::FileSystemOperationContext(
FileSystemContext* context,
- FileSystemFileUtil* file_system_file_util)
+ FileUtil* file_util)
: file_system_context_(context),
- src_file_system_file_util_(file_system_file_util),
- dest_file_system_file_util_(file_system_file_util),
+ src_file_util_(file_util),
+ dest_file_util_(file_util),
src_type_(kFileSystemTypeUnknown),
dest_type_(kFileSystemTypeUnknown),
allowed_bytes_growth_(0),
@@ -27,7 +27,7 @@ FileSystemOperationContext::~FileSystemOperationContext() {
FileSystemOperationContext*
FileSystemOperationContext::CreateInheritedContextForDest() const {
FileSystemOperationContext* context = new FileSystemOperationContext(
- file_system_context_.get(), dest_file_system_file_util_);
+ file_system_context_.get(), dest_file_util_);
context->set_src_origin_url(dest_origin_url_);
context->set_src_type(dest_type_);
context->set_allowed_bytes_growth(allowed_bytes_growth_);

Powered by Google App Engine
This is Rietveld 408576698