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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js

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
« no previous file with comments | « chrome/common/extensions/api/file_system_provider.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js b/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
index e62721f5ca575d03f8ec4e4bc468bd41019f1751..be0dcfcc0c2ffa80f704e37db52a8c1f91573ac4 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
@@ -33,8 +33,7 @@ function onCreateDirectoryRequested(options, onSuccess, onError) {
return;
}
- if (options.exclusive && (options.directoryPath in
- test_util.defaultMetadata)) {
+ if (options.directoryPath in test_util.defaultMetadata) {
onError('EXISTS');
return;
}
« no previous file with comments | « chrome/common/extensions/api/file_system_provider.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698