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

Unified Diff: ui/file_manager/file_manager/foreground/js/file_transfer_controller.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: 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 474c5579e9a5febf561b1805ba513897fce2faf4..fa08077bc9d2e9d0ccb829032b2e629ac82e2cb1 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
@@ -263,7 +263,7 @@ FileTransferController.prototype = {
var processFileEntries = function(entries) {
return new Promise(function(callback) {
var urls = util.entriesToURLs(entries);
- chrome.fileBrowserPrivate.getEntryProperties(urls, callback);
+ chrome.fileManagerPrivate.getEntryProperties(urls, callback);
}).
then(function(metadatas) {
return entries.filter(function(entry, i) {
@@ -352,7 +352,7 @@ FileTransferController.prototype = {
if (index >= shareEntries.length)
return;
return new Promise(function(fulfill) {
- chrome.fileBrowserPrivate.requestDriveShare(
+ chrome.fileManagerPrivate.requestDriveShare(
shareEntries[index].toURL(),
dialogResult,
function() {

Powered by Google App Engine
This is Rietveld 408576698