| 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,
|
|
|