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

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

Issue 427493002: [fsp] Do not allow write operations on read only file systems. (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/browser/chromeos/file_system_provider/operations/truncate_unittest.cc ('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/test_util/test_util.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js b/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
index 047e4c89a5c061c4e14598eb7896a1f54d74060c..2ce6ce00d9c289e065153762b15eb616d8923e19 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
@@ -69,7 +69,8 @@ test_util.mountFileSystem = function(callback) {
chrome.fileSystemProvider.mount(
{
fileSystemId: test_util.FILE_SYSTEM_ID,
- displayName: test_util.FILE_SYSTEM_NAME
+ displayName: test_util.FILE_SYSTEM_NAME,
+ writable: true
},
function() {
var volumeId =
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698