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

Unified Diff: ui/file_manager/gallery/js/background.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
« no previous file with comments | « ui/file_manager/file_manager/manifest.json ('k') | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/gallery/js/background.js
diff --git a/ui/file_manager/gallery/js/background.js b/ui/file_manager/gallery/js/background.js
index e76a91b4f21c69b23ce9bd11876636409d80b647..74133613ae15a32ce4fc19b17e2a6d5c93014a31 100644
--- a/ui/file_manager/gallery/js/background.js
+++ b/ui/file_manager/gallery/js/background.js
@@ -30,7 +30,7 @@ function BackgroundComponents(stringData, volumeManager) {
*/
BackgroundComponents.load = function() {
var stringDataPromise = new Promise(function(fulfill) {
- chrome.fileBrowserPrivate.getStrings(function(stringData) {
+ chrome.fileManagerPrivate.getStrings(function(stringData) {
loadTimeData.data = stringData;
fulfill(stringData);
});
@@ -62,7 +62,7 @@ var backgroundComponentsPromise = BackgroundComponents.load();
*/
function resolveEntries(entries) {
return new Promise(function(fulfill, reject) {
- chrome.fileBrowserPrivate.resolveIsolatedEntries(entries,
+ chrome.fileManagerPrivate.resolveIsolatedEntries(entries,
function(externalEntries) {
if (!chrome.runtime.lastError)
fulfill(externalEntries);
« no previous file with comments | « ui/file_manager/file_manager/manifest.json ('k') | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698