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

Unified Diff: ui/file_manager/video_player/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/image_loader/request.js ('k') | ui/file_manager/video_player/js/cast/caster.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/video_player/js/background.js
diff --git a/ui/file_manager/video_player/js/background.js b/ui/file_manager/video_player/js/background.js
index acbf1c45f8307146b814e366a44f5c99c239bec4..6c350aed8d6d23e4d16c1b60d62cd2492747ebb9 100644
--- a/ui/file_manager/video_player/js/background.js
+++ b/ui/file_manager/video_player/js/background.js
@@ -13,7 +13,7 @@ var initializeQueue = new AsyncUtil.Queue();
// Initializes the strings. This needs for the volume manager.
initializeQueue.run(function(fulfill) {
- chrome.fileBrowserPrivate.getStrings(function(stringData) {
+ chrome.fileManagerPrivate.getStrings(function(stringData) {
loadTimeData.data = stringData;
fulfill();
}.wrap());
@@ -41,7 +41,7 @@ function onLaunched(launchData) {
return item.entry;
});
- chrome.fileBrowserPrivate.resolveIsolatedEntries(isolatedEntries,
+ chrome.fileManagerPrivate.resolveIsolatedEntries(isolatedEntries,
function(externalEntries) {
videos = externalEntries.map(function(entry) {
return Object.freeze({
« no previous file with comments | « ui/file_manager/image_loader/request.js ('k') | ui/file_manager/video_player/js/cast/caster.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698