| Index: chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js b/chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js
|
| index cfe46176596808412ffcd11a7d002b5e13b69472..ab5684411772e9b1cc1863ce260223d4520bb3df 100644
|
| --- a/chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js
|
| @@ -21,9 +21,10 @@ function fileErrorCallback(callback, message) {
|
| /**
|
| * Copies an entry using chrome.fileManagerPrivate.startCopy().
|
| *
|
| - * @param {Entry} fromRoot Root entry of the copy source file system.
|
| + * @param {FileSystemEntry} fromRoot Root entry of the copy source file system.
|
| * @param {string} fromPath Relative path from fromRoot of the source entry.
|
| - * @param {Entry} toRoot Root entry of the copy destination file system.
|
| + * @param {FileSystemEntry} toRoot Root entry of the copy destination file
|
| + * system.
|
| * @param {string} toPath Relative path from toRoot of the target directory.
|
| * @param {string} newName Name of the new copied entry.
|
| * @param {function()} successCallback Callback invoked when copy succeed.
|
| @@ -65,7 +66,7 @@ function fileCopy(fromRoot, fromPath, toRoot, toPath, newName,
|
| /**
|
| * Verifies that a file exists on the specified location.
|
| *
|
| - * @param {Entry} root Root entry of the file system.
|
| + * @param {FileSystemEntry} root Root entry of the file system.
|
| * @param {string} path Relative path of the file from the root entry,
|
| * @param {function()} successCallback Callback invoked when the file exists.
|
| * @param {function(string)} errorCallback Callback invoked in error case.
|
| @@ -79,8 +80,8 @@ function verifyFileExists(root, path, successCallback, errorCallback) {
|
| /**
|
| * Collects all tests that should be run for the test volume.
|
| *
|
| - * @param {Entry} firstRoot Root entry of the first volume.
|
| - * @param {Entry} secondRoot Root entry of the second volume.
|
| + * @param {FileSystemEntry} firstRoot Root entry of the first volume.
|
| + * @param {FileSystemEntry} secondRoot Root entry of the second volume.
|
| * @return {Array<function()>} The list of tests that should be run.
|
| */
|
| function collectTests(firstRoot, secondRoot) {
|
|
|