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

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

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.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/create_directory.cc b/chrome/browser/chromeos/file_system_provider/operations/create_directory.cc
index c31523451873ea07389f960ab0231d5961151756..4a40e469db73de85a3776bbe2363ec4367adf588 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/create_directory.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/create_directory.cc
@@ -17,12 +17,10 @@ CreateDirectory::CreateDirectory(
extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
const base::FilePath& directory_path,
- bool exclusive,
bool recursive,
const storage::AsyncFileUtil::StatusCallback& callback)
: Operation(event_router, file_system_info),
directory_path_(directory_path),
- exclusive_(exclusive),
recursive_(recursive),
callback_(callback) {
}
@@ -36,7 +34,6 @@ bool CreateDirectory::Execute(int request_id) {
scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue);
values->SetString("directoryPath", directory_path_.AsUTF8Unsafe());
- values->SetBoolean("exclusive", exclusive_);
values->SetBoolean("recursive", recursive_);
return SendEvent(request_id,

Powered by Google App Engine
This is Rietveld 408576698