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

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 tests. 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
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;

Powered by Google App Engine
This is Rietveld 408576698