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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/create_directory.h

Issue 528683002: [fsp] Remove the exclusive field from the CreateDirectory operation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a comment. Created 6 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/chromeos/file_system_provider/operations/create_directory.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/create_directory.h b/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
index 42c7f463acbaf0afd68e83df7ffa37e1be913f8d..65300893f14644366e1907560de02ed84a70671b 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
@@ -26,14 +26,13 @@ namespace file_system_provider {
namespace operations {
// Creates a directory. If |recursive| is set to true, then creates also all
-// non-existing directories on the path. If |exclusive| is true, then the
-// operation will fail if the directory already exists. Created per request.
+// non-existing directories on the path. The operation will fail if the
+// directory already exists. Created per request.
class CreateDirectory : public Operation {
public:
CreateDirectory(extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
const base::FilePath& directory_path,
- bool exclusive,
bool recursive,
const storage::AsyncFileUtil::StatusCallback& callback);
virtual ~CreateDirectory();
@@ -50,7 +49,6 @@ class CreateDirectory : public Operation {
private:
base::FilePath directory_path_;
ProvidedFileSystemInterface::OpenFileMode mode_;
- bool exclusive_;
bool recursive_;
const storage::AsyncFileUtil::StatusCallback callback_;

Powered by Google App Engine
This is Rietveld 408576698