| Index: ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js b/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
|
| index e641ee4d8b31122e55fc87a632954be21c31caf7..13edd5f6f45ab2c948d5411f1f7fdc101883b1e1 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
|
| @@ -265,7 +265,7 @@ FileTransferController.prototype = {
|
| // TODO(mtomasz): Move conversion from entry to url to custom bindings.
|
| // crbug.com/345527.
|
| var urls = util.entriesToURLs(entries);
|
| - chrome.fileBrowserPrivate.getEntryProperties(urls, callback);
|
| + chrome.fileManagerPrivate.getEntryProperties(urls, callback);
|
| }).
|
| then(function(metadatas) {
|
| return entries.filter(function(entry, i) {
|
| @@ -354,7 +354,7 @@ FileTransferController.prototype = {
|
| if (index >= shareEntries.length)
|
| return;
|
| return new Promise(function(fulfill) {
|
| - chrome.fileBrowserPrivate.requestDriveShare(
|
| + chrome.fileManagerPrivate.requestDriveShare(
|
| shareEntries[index].toURL(),
|
| dialogResult,
|
| function() {
|
|
|