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

Unified Diff: webkit/fileapi/file_system_operation.h

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, 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_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index faa14d5877f926ef7ab638d7728caa1b14673667..f14df9c7a39d7647d41931fc2295e2fca6e7e6b7 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -48,12 +48,12 @@ class FileSystemOperationTest;
class FileSystemOperation {
public:
// |dispatcher| will be owned by this class.
- // |file_system_file_util| is optional; if supplied, it will not be deleted by
+ // |file_util| is optional; if supplied, it will not be deleted by
// the class. It's expecting a pointer to a singleton.
FileSystemOperation(FileSystemCallbackDispatcher* dispatcher,
scoped_refptr<base::MessageLoopProxy> proxy,
FileSystemContext* file_system_context,
- FileSystemFileUtil* file_system_file_util);
+ FileSystemFileUtil* file_util);
virtual ~FileSystemOperation();
void OpenFileSystem(const GURL& origin_url,
@@ -181,7 +181,7 @@ class FileSystemOperation {
GURL* root_url,
FileSystemType* type,
FilePath* virtual_path,
- FileSystemFileUtil** file_system_file_util);
+ FileSystemFileUtil** file_util);
// Checks the validity of a given |path| for writing, cracks the path into
// root URL and virtual path components, and returns the correct
@@ -203,7 +203,7 @@ class FileSystemOperation {
GURL* root_url,
FileSystemType* type,
FilePath* virtual_path,
- FileSystemFileUtil** file_system_file_util);
+ FileSystemFileUtil** file_util);
#ifndef NDEBUG
enum OperationType {

Powered by Google App Engine
This is Rietveld 408576698