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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/read_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
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/evil/test.js ('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/read_file/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js b/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
index 5ca2d163820668bbdfa4913570af7f6a3f9480bb..9551424dd264aba496a6cded586ce4098066a721 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
@@ -57,7 +57,7 @@ var TESTING_BROKEN_TIRAMISU_FILE = Object.freeze({
*/
function onOpenFileRequested(options, onSuccess, onError) {
if (options.fileSystemId != test_util.FILE_SYSTEM_ID ||
- options.mode != 'READ' || options.create) {
+ options.mode != 'READ') {
onError('SECURITY'); // enum ProviderError.
return;
}
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/evil/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698