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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system.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/provided_file_system.cc
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system.cc
index dc0de56cdd8ca66d50f72651331febe7da716ced..6f413744fd8a144359f32ef5467c192ce35a809b 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system.cc
@@ -175,7 +175,6 @@ ProvidedFileSystem::AbortCallback ProvidedFileSystem::CloseFile(
ProvidedFileSystem::AbortCallback ProvidedFileSystem::CreateDirectory(
const base::FilePath& directory_path,
- bool exclusive,
bool recursive,
const storage::AsyncFileUtil::StatusCallback& callback) {
const int request_id = request_manager_.CreateRequest(
@@ -184,7 +183,6 @@ ProvidedFileSystem::AbortCallback ProvidedFileSystem::CreateDirectory(
new operations::CreateDirectory(event_router_,
file_system_info_,
directory_path,
- exclusive,
recursive,
callback)));
if (!request_id) {

Powered by Google App Engine
This is Rietveld 408576698