| 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 0d19d4cf46d1603fe04f112322cdce82a3ec6cb7..f70cd0824011ea6c17d458731acd654e4949365f 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
|
| @@ -52,14 +52,14 @@ chrome.test.runTests([
|
|
|
| // End to end test. Mounts a volume using fileSystemProvider.mount(), then
|
| // checks if the mounted volume is added to VolumeManager, by querying
|
| - // fileBrowserPrivate.getVolumeMetadataList().
|
| + // fileManagerPrivate.getVolumeMetadataList().
|
| function successfulMount() {
|
| var onTestSuccess = chrome.test.callbackPass();
|
| var fileSystemId = 'caramel-candy';
|
| chrome.fileSystemProvider.mount(
|
| {fileSystemId: fileSystemId, displayName: 'caramel-candy.zip'},
|
| function() {
|
| - chrome.fileBrowserPrivate.getVolumeMetadataList(function(volumeList) {
|
| + chrome.fileManagerPrivate.getVolumeMetadataList(function(volumeList) {
|
| var volumeInfo;
|
| volumeList.forEach(function(inVolumeInfo) {
|
| if (inVolumeInfo.extensionId == chrome.runtime.id &&
|
| @@ -89,7 +89,7 @@ chrome.test.runTests([
|
| writable: true
|
| },
|
| function() {
|
| - chrome.fileBrowserPrivate.getVolumeMetadataList(function(volumeList) {
|
| + chrome.fileManagerPrivate.getVolumeMetadataList(function(volumeList) {
|
| var volumeInfo;
|
| volumeList.forEach(function(inVolumeInfo) {
|
| if (inVolumeInfo.extensionId == chrome.runtime.id &&
|
|
|