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

Unified Diff: chrome/common/extensions/api/file_system_provider.idl

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/common/extensions/api/file_system_provider.idl
diff --git a/chrome/common/extensions/api/file_system_provider.idl b/chrome/common/extensions/api/file_system_provider.idl
index 155c7da2d59b6bbaaa9293d75bb44c8c7af5c13d..ca7f50ca3129fddb55c572d075308daf900cfc8f 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -120,7 +120,6 @@ namespace fileSystemProvider {
DOMString fileSystemId;
long requestId;
DOMString directoryPath;
- boolean exclusive;
boolean recursive;
};
@@ -295,10 +294,10 @@ namespace fileSystemProvider {
FileDataCallback successCallback,
ProviderErrorCallback errorCallback);
- // Raised when creating a directory is requested. If <code>exclusive</code>
- // is set to true, then the operation must fail if the target directory
- // already exists. If <code>recursive</code> is true, then all of the
- // missing directories on the directory path must be created.
+ // Raised when creating a directory is requested. The operation must fail
+ // with the EXISTS error if the target directory already exists.
+ // If <code>recursive</code> is true, then all of the missing directories
+ // on the directory path must be created.
[maxListeners=1, nodoc] static void onCreateDirectoryRequested(
CreateDirectoryRequestedOptions options,
ProviderSuccessCallback successCallback,

Powered by Google App Engine
This is Rietveld 408576698