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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/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
Index: chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/background.js
diff --git a/chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/background.js b/chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/background.js
index 05703e32e73c90ab3fa0dbc3d40575ee4edfe769..742e49153955123c8a1c96c065080f279c7ba7be 100644
--- a/chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/background.js
+++ b/chrome/test/data/extensions/api_test/file_browser/filesystem_file_origin_url/background.js
@@ -74,7 +74,7 @@ function sendXHR(url) {
*/
function requestDriveFileSystem() {
return new Promise(function(fulfill) {
- chrome.fileBrowserPrivate.requestFileSystem(
+ chrome.fileManagerPrivate.requestFileSystem(
'drive:drive-user',
function(fileSystem) {
chrome.test.assertTrue(!!fileSystem);
@@ -107,7 +107,7 @@ function testResolveFileSystemURL() {
*/
function testSendXHRToFileSystemURL() {
// Thus we grant the permission to the extension in
- // chrome.fileBrowserPrivate.requestFileSystem, we need to call the method
+ // chrome.fileManagerPrivate.requestFileSystem, we need to call the method
// before.
reportPromise(requestDriveFileSystem().then(function(fileSystem) {
return Promise.all([

Powered by Google App Engine
This is Rietveld 408576698