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

Unified Diff: content/child/fileapi/file_system_dispatcher.h

Issue 18282010: Cleanup: split FileSystemDispatcher::Create into CreateFile and CreateDirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | « no previous file | content/child/fileapi/file_system_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | content/child/fileapi/file_system_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698