| Index: chrome/test/data/extensions/api_test/file_browser/drive_search_test/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_browser/drive_search_test/test.js b/chrome/test/data/extensions/api_test/file_browser/drive_search_test/test.js
|
| index 435ae10ede5eb061cfd7e45842ead7b6712de9e0..81408d951998b12fef830769277b61ab204310f7 100644
|
| --- a/chrome/test/data/extensions/api_test/file_browser/drive_search_test/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_browser/drive_search_test/test.js
|
| @@ -12,8 +12,8 @@
|
| *
|
| * For both search test functions, the test verifies that the file system
|
| * operations can be performed on the returned result entries. For file entries
|
| - * by trying FileEntry.file function and for directory entries by trying
|
| - * to run the deirectories directory reader.
|
| + * by trying FileSystemFileEntry.file function and for directory entries by
|
| + * trying to run the deirectories directory reader.
|
| */
|
|
|
| /**
|
| @@ -21,7 +21,7 @@
|
| * On failure, the current test is ended with failure.
|
| * On success, |successCallback| is called.
|
| *
|
| - * @param {FileEntry} entry File entry to be tested.
|
| + * @param {FileSystemFileEntry} entry File entry to be tested.
|
| * @param {function()} successCallback The function called when the file entry
|
| * is successfully verified.
|
| */
|
| @@ -38,7 +38,7 @@ function verifyFile(entry, successCallback) {
|
| * On failure, the current test is ended with failure.
|
| * On success, |successCallback| is called.
|
| *
|
| - * @param {DirectoryEntry} entry Directory entry to be tested.
|
| + * @param {FileSystemDirectoryEntry} entry Directory entry to be tested.
|
| * @param {function()} successCallback The function called when the dir entry
|
| * is successfully verified.
|
| */
|
| @@ -57,7 +57,7 @@ function verifyDirectory(entry, successCallback) {
|
| * specified by |type|.
|
| *
|
| * @param {string} type The entry type. Can be either 'file' or 'dir'.
|
| - * @return {function(Entry, successCallback)}
|
| + * @return {function(FileSystemEntry, successCallback)}
|
| */
|
| function getEntryVerifier(type) {
|
| if (type == 'file')
|
|
|