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

Unified Diff: chrome/common/file_system/file_system_dispatcher.h

Issue 6624066: Put file_system messages in their own file and move them to content, in prepa... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 | « chrome/common/common_param_traits.cc ('k') | chrome/common/file_system/file_system_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/file_system/file_system_dispatcher.h
===================================================================
--- chrome/common/file_system/file_system_dispatcher.h (revision 77144)
+++ chrome/common/file_system/file_system_dispatcher.h (working copy)
@@ -76,23 +76,21 @@
fileapi::FileSystemCallbackDispatcher* dispatcher);
private:
- // Message handler for OpenFileSystem.
- void OnOpenFileSystemRequestComplete(
+ // Message handlers.
+ void OnOpenComplete(
int request_id,
bool accepted,
const std::string& name,
const FilePath& root_path);
-
- // Message handlers for regular file system operations.
- void DidSucceed(int request_id);
- void DidReadMetadata(int request_id,
- const base::PlatformFileInfo& file_info);
- void DidReadDirectory(
+ void OnDidSucceed(int request_id);
+ void OnDidReadMetadata(int request_id,
+ const base::PlatformFileInfo& file_info);
+ void OnDidReadDirectory(
int request_id,
const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more);
- void DidFail(int request_id, base::PlatformFileError error_code);
- void DidWrite(int request_id, int64 bytes, bool complete);
+ void OnDidFail(int request_id, base::PlatformFileError error_code);
+ void OnDidWrite(int request_id, int64 bytes, bool complete);
IDMap<fileapi::FileSystemCallbackDispatcher, IDMapOwnPointer> dispatchers_;
« no previous file with comments | « chrome/common/common_param_traits.cc ('k') | chrome/common/file_system/file_system_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698