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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/mime_type/test.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_system_provider/mime_type/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/mime_type/test.js b/chrome/test/data/extensions/api_test/file_system_provider/mime_type/test.js
index 8f77cf7ce5bb68ea0723f2d99b4ba91fe8d3c25d..a234084adb63b67cef485e9992f94f0a89bad699 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/mime_type/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/mime_type/test.js
@@ -64,7 +64,7 @@ function runTests() {
TESTING_WITH_MIME_FILE.name,
{},
function(entry) {
- chrome.fileBrowserPrivate.getFileTasks(
+ chrome.fileManagerPrivate.getFileTasks(
[entry.toURL()],
function(tasks) {
chrome.test.assertEq(1, tasks.length);
@@ -84,7 +84,7 @@ function runTests() {
var onSuccess = chrome.test.callbackPass();
test_util.fileSystem.root.getFile(
TESTING_WITH_MIME_FILE.name, {}, function(entry) {
- chrome.fileBrowserPrivate.getFileTasks(
+ chrome.fileManagerPrivate.getFileTasks(
[entry.toURL()],
function(tasks) {
chrome.test.assertEq(1, tasks.length);
@@ -105,7 +105,7 @@ function runTests() {
onSuccess();
};
chrome.app.runtime.onLaunched.addListener(onLaunched);
- chrome.fileBrowserPrivate.executeTask(
+ chrome.fileManagerPrivate.executeTask(
tasks[0].taskId, [entry.toURL()]);
});
}, function(error) {
@@ -121,7 +121,7 @@ function runTests() {
TESTING_WITHOUT_MIME_FILE.name,
{},
function(entry) {
- chrome.fileBrowserPrivate.getFileTasks(
+ chrome.fileManagerPrivate.getFileTasks(
[entry.toURL()],
function(tasks) {
chrome.test.assertEq(0, tasks.length);

Powered by Google App Engine
This is Rietveld 408576698