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

Unified Diff: ui/file_manager/file_manager/foreground/js/directory_contents.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/directory_contents.js
diff --git a/ui/file_manager/file_manager/foreground/js/directory_contents.js b/ui/file_manager/file_manager/foreground/js/directory_contents.js
index 0abf9ee17888b7293b7bcac0eeda9c86d75c1a1b..dd275bd8a320311b03e5f812f3a359358bece825 100644
--- a/ui/file_manager/file_manager/foreground/js/directory_contents.js
+++ b/ui/file_manager/file_manager/foreground/js/directory_contents.js
@@ -131,7 +131,7 @@ DriveSearchContentScanner.prototype.scan = function(
entriesCallback, successCallback, errorCallback) {
var numReadEntries = 0;
var readEntries = function(nextFeed) {
- chrome.fileBrowserPrivate.searchDrive(
+ chrome.fileManagerPrivate.searchDrive(
{query: this.query_, nextFeed: nextFeed},
function(entries, nextFeed) {
if (this.cancelled_) {
@@ -292,7 +292,7 @@ DriveMetadataSearchContentScanner.SearchType = Object.freeze({
*/
DriveMetadataSearchContentScanner.prototype.scan = function(
entriesCallback, successCallback, errorCallback) {
- chrome.fileBrowserPrivate.searchDriveMetadata(
+ chrome.fileManagerPrivate.searchDriveMetadata(
{query: '', types: this.searchType_, maxResults: 500},
function(results) {
if (this.cancelled_) {

Powered by Google App Engine
This is Rietveld 408576698