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

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

Issue 1055183003: Add a data source field for volumes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a typo. Created 5 years, 8 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/get_all/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/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..022d384c02f5978d38acd823e35a106b37ca363d 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: 'FILE'
+ },
chrome.test.callbackPass(function() {
chrome.fileManagerPrivate.getVolumeMetadataList(function(volumeList) {
var volumeInfo;
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/get_all/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698