| Index: chrome/test/data/extensions/api_test/file_browser/file_browser_handler/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_browser/file_browser_handler/background.js b/chrome/test/data/extensions/api_test/file_browser/file_browser_handler/background.js
|
| index ffbd3113704ba329ca0bf9cc9b08c12681a45e79..86234ab3ef3de9fa7def4f5bfb5be78ff31c2a7c 100644
|
| --- a/chrome/test/data/extensions/api_test/file_browser/file_browser_handler/background.js
|
| +++ b/chrome/test/data/extensions/api_test/file_browser/file_browser_handler/background.js
|
| @@ -39,7 +39,7 @@ function assertEqAndRunCallback(expectedValue, value, errorMessage, callback) {
|
| * as expected (|expectSuccess|, |expectedContent|). On success |callback| is
|
| * called, otherwise current test is failed.
|
| *
|
| - * @param {FileEntry} entry Entry to be read.
|
| + * @param {FileSystemFileEntry} entry Entry to be read.
|
| * @param {boolean} expectSuccess Whether the read should succeed.
|
| * @param {string} expectedContent If the read succeeds, the expected content to
|
| * be read from file. If the read fails, it is ignored.
|
| @@ -65,7 +65,7 @@ function readAndExpectContent(entry, expectSuccess, expectedContent, callback) {
|
| * operation success is as expected. On success |callback| is called, else the
|
| * current test is failed.
|
| *
|
| - * @param {FileEntry} entry File entry to be read.
|
| + * @param {FileSystemFileEntry} entry File entry to be read.
|
| * @param {string} content String content to be appended to the file.
|
| * @param {boolean} expectSuccess Whether the write should succeed.
|
| * @param {function()} callback Function called if write ends as defined by
|
| @@ -91,7 +91,8 @@ function write(entry, content, expectSuccess, callback) {
|
| /**
|
| * Runs read test.
|
| *
|
| - * @params {FileEntry} entry File entry for which the test should be run.
|
| + * @params {FileSystemFileEntry} entry File entry for which the test should be
|
| + * run.
|
| * @params {boolean} expectSuccess Whether the read should succeed.
|
| */
|
| function readTest(entry, expectSuccess) {
|
| @@ -119,7 +120,7 @@ function getSiblingTest(entry) {
|
| * Attempts to write to the entry. If the write operation ends as expected, the
|
| * test verifies new content of the file.
|
| *
|
| - * @param {FileEntry} entry Entry to be written.
|
| + * @param {FileSystemFileEntry} entry Entry to be written.
|
| * @param {boolean} expectSuccess Whether the test should succeed.
|
| */
|
| function writeTest(entry, expectSuccess) {
|
|
|