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

Unified Diff: chrome/browser/file_system/file_system_dispatcher_host.h

Issue 3208007: Add final part of IPC plumbing for FileSystem API (Closed)
Patch Set: fixing Created 10 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: chrome/browser/file_system/file_system_dispatcher_host.h
diff --git a/chrome/browser/file_system/file_system_dispatcher_host.h b/chrome/browser/file_system/file_system_dispatcher_host.h
index f756ebef224f7b3614354b38bbf25312f73f8c07..0164e699e3a794f179c44aa7e5417a7c4c869423 100644
--- a/chrome/browser/file_system/file_system_dispatcher_host.h
+++ b/chrome/browser/file_system/file_system_dispatcher_host.h
@@ -30,9 +30,28 @@ class FileSystemDispatcherHost
int request_id,
const string16& src_path,
const string16& dest_path);
-
- // TODO(kinuko): add more methods.
-
+ void OnCopy(
+ int request_id,
+ const string16& src_path,
+ const string16& dest_path);
+ void OnRemove(
+ int request_id,
+ const string16& path);
+ void OnReadMetadata(
+ int request_id,
+ const string16& path);
+ void OnCreate(
+ int request_id,
+ const string16& path,
+ bool exclusive,
+ bool is_directory);
+ void OnExists(
+ int request_id,
+ const string16& path,
+ bool is_directory);
+ void OnReadDirectory(
+ int request_id,
+ const string16& path);
void Send(IPC::Message* message);
private:
« no previous file with comments | « no previous file | chrome/browser/file_system/file_system_dispatcher_host.cc » ('j') | chrome/common/webkit_param_traits.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698