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

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

Issue 379743003: [fsp] Remove the create flag from the file opening operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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/test/data/extensions/api_test/file_system_provider/big_file/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/big_file/test.js b/chrome/test/data/extensions/api_test/file_system_provider/big_file/test.js
index 85ad713aa89e76e0216072fd108f0dea59b8ea65..ac2f63327ea9181b3e66cc1753a7c99dad5ad65c 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/big_file/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/big_file/test.js
@@ -54,7 +54,7 @@ function onOpenFileRequested(options, onSuccess, onError) {
return;
}
- if (options.mode != 'READ' || options.create) {
+ if (options.mode != 'READ') {
onError('ACCESS_DENIED'); // enum ProviderError.
return;
}

Powered by Google App Engine
This is Rietveld 408576698