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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/mount_test/test.js

Issue 181203002: Get rid of mountPath dependency in Files app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests. Created 6 years, 9 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/common/extensions/api/file_browser_private.idl ('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_browser/mount_test/test.js
diff --git a/chrome/test/data/extensions/api_test/file_browser/mount_test/test.js b/chrome/test/data/extensions/api_test/file_browser/mount_test/test.js
index 5627b87271cff055a70c360c8d4c4e7d8bd7fd42..0416e791a01860944cee98aa631a9f2ffd234cef 100644
--- a/chrome/test/data/extensions/api_test/file_browser/mount_test/test.js
+++ b/chrome/test/data/extensions/api_test/file_browser/mount_test/test.js
@@ -5,7 +5,6 @@
// These have to be sync'd with file_browser_private_apitest.cc
var expectedVolume1 = {
volumeId: 'removable:mount_path1',
- mountPath: '/removable/mount_path1',
sourcePath: 'device_path1',
volumeType: 'removable',
deviceType: 'usb',
@@ -18,7 +17,6 @@ var expectedVolume1 = {
var expectedVolume2 = {
volumeId: 'removable:mount_path2',
- mountPath: '/removable/mount_path2',
sourcePath: 'device_path2',
volumeType: 'removable',
deviceType: 'mobile',
@@ -31,7 +29,6 @@ var expectedVolume2 = {
var expectedVolume3 = {
volumeId: 'removable:mount_path3',
- mountPath: '/removable/mount_path3',
sourcePath: 'device_path3',
volumeType: 'removable',
deviceType: 'optical',
@@ -44,7 +41,6 @@ var expectedVolume3 = {
var expectedDownloadsVolume = {
volumeId: /^downloads:Downloads[^\/]*$/,
- mountPath: /^\/Downloads[^\/]*$/,
volumeType: 'downloads',
isReadOnly: false,
profile: {profileId: "", displayName: "", isCurrentProfile: true}
@@ -52,7 +48,6 @@ var expectedDownloadsVolume = {
var expectedDriveVolume = {
volumeId: /^drive:drive[^\/]*$/,
- mountPath: /^\/drive[^\/]*$/,
sourcePath: /^\/special\/drive[^\/]*$/,
volumeType: 'drive',
isReadOnly: false,
@@ -61,7 +56,6 @@ var expectedDriveVolume = {
var expectedArchiveVolume = {
volumeId: 'archive:archive_mount_path',
- mountPath: '/archive/archive_mount_path',
sourcePath: /removable\/mount_path3\/archive.zip$/,
volumeType: 'archive',
isReadOnly: true,
« no previous file with comments | « chrome/common/extensions/api/file_browser_private.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698