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

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

Issue 550863003: Rename fileBrowserPrivate to fileManagerPrivate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 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 &&

Powered by Google App Engine
This is Rietveld 408576698