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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/multi_profile_copy/test.js

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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/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) {

Powered by Google App Engine
This is Rietveld 408576698