Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/file_system_provider/mount/test.js |
| diff --git a/chrome/test/data/extensions/api_test/file_system_provider/mount/test.js b/chrome/test/data/extensions/api_test/file_system_provider/mount/test.js |
| index 83e2c374536d6009bde79eee3cd6757bb6b8622f..726fb22747447a8e377c72cc0e3c75c592bfdbee 100644 |
| --- a/chrome/test/data/extensions/api_test/file_system_provider/mount/test.js |
| +++ b/chrome/test/data/extensions/api_test/file_system_provider/mount/test.js |
| @@ -65,7 +65,11 @@ chrome.test.runTests([ |
| function successfulMount() { |
| var fileSystemId = 'caramel-candy'; |
| chrome.fileSystemProvider.mount( |
| - {fileSystemId: fileSystemId, displayName: 'caramel-candy.zip'}, |
| + { |
| + fileSystemId: fileSystemId, |
| + displayName: 'caramel-candy.zip', |
| + source: 'NETWORK' |
|
hirono
2015/04/06 08:36:34
Should it be FILE?
mtomasz
2015/04/06 09:13:48
Done.
|
| + }, |
| chrome.test.callbackPass(function() { |
| chrome.fileManagerPrivate.getVolumeMetadataList(function(volumeList) { |
| var volumeInfo; |