Index: content/child/fileapi/file_system_dispatcher.h |
diff --git a/content/child/fileapi/file_system_dispatcher.h b/content/child/fileapi/file_system_dispatcher.h |
index 1e155db575317ab5572ea361f27eef6a43ba0248..a8fc624a059725561130343be8369735fee2a6b7 100644 |
--- a/content/child/fileapi/file_system_dispatcher.h |
+++ b/content/child/fileapi/file_system_dispatcher.h |
@@ -82,11 +82,13 @@ class FileSystemDispatcher : public IPC::Listener { |
void ReadMetadata(const GURL& path, |
const MetadataCallback& success_callback, |
const StatusCallback& error_callback); |
- void Create(const GURL& path, |
- bool exclusive, |
- bool is_directory, |
- bool recursive, |
- const StatusCallback& callback); |
+ void CreateFile(const GURL& path, |
+ bool exclusive, |
+ const StatusCallback& callback); |
+ void CreateDirectory(const GURL& path, |
+ bool exclusive, |
+ bool recursive, |
+ const StatusCallback& callback); |
void Exists(const GURL& path, |
bool for_directory, |
const StatusCallback& callback); |