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

Unified Diff: content/browser/file_system/file_system_dispatcher_host.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/render_messages_params.cc ('k') | content/browser/file_system/file_system_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/file_system/file_system_dispatcher_host.h
===================================================================
--- content/browser/file_system/file_system_dispatcher_host.h (revision 77144)
+++ content/browser/file_system/file_system_dispatcher_host.h (working copy)
@@ -47,12 +47,14 @@
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok);
+ void UnregisterOperation(int request_id);
- void OnOpenFileSystem(int request_id,
- const GURL& origin_url,
- fileapi::FileSystemType type,
- int64 requested_size,
- bool create);
+ private:
+ void OnOpen(int request_id,
+ const GURL& origin_url,
+ fileapi::FileSystemType type,
+ int64 requested_size,
+ bool create);
void OnMove(int request_id,
const FilePath& src_path,
const FilePath& dest_path);
@@ -78,9 +80,7 @@
const base::Time& last_access_time,
const base::Time& last_modified_time);
void OnCancel(int request_id, int request_to_cancel);
- void UnregisterOperation(int request_id);
- private:
// Creates a new FileSystemOperation.
fileapi::FileSystemOperation* GetNewOperation(int request_id);
« no previous file with comments | « chrome/common/render_messages_params.cc ('k') | content/browser/file_system/file_system_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698