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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/file_watcher_test/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/file_watcher_test/test.js
diff --git a/chrome/test/data/extensions/api_test/file_browser/file_watcher_test/test.js b/chrome/test/data/extensions/api_test/file_browser/file_watcher_test/test.js
index d99cfe4373dfaf295d4bc32a95c3c93403fad789..6fd17893e80e33e1afd04059a5d333aa1709b797 100644
--- a/chrome/test/data/extensions/api_test/file_browser/file_watcher_test/test.js
+++ b/chrome/test/data/extensions/api_test/file_browser/file_watcher_test/test.js
@@ -54,7 +54,7 @@ function TestEventListener() {
/**
* An entry returned by the test file system operation.
*
- * @type {Entry}
+ * @type {FileSystemEntry}
* @private
*/
this.receivedEntry_ = null;
@@ -80,7 +80,7 @@ TestEventListener.prototype = {
/**
* Adds expectation for an event that should be encountered during the test.
*
- * @param {Entry} entry The event's entry argument.
+ * @param {FileSystemEntry} entry The event's entry argument.
* @param {string} eventType The event't type.
* @param {string} changeType The change type for the entry specified in
* event.changedEntries[0].
@@ -96,7 +96,8 @@ TestEventListener.prototype = {
* Called by a test when the file system operation performed in the test
* succeeds.
*
- * @param {Entry} entry The entry returned by the file system operation.
+ * @param {FileSystemEntry} entry The entry returned by the file system
+ * operation.
*/
onFileSystemOperation: function(entry) {
this.receivedEntry_ = entry;
@@ -219,12 +220,12 @@ function initTests(callback) {
isOnDrive: false,
/**
* Set of entries that are being watched during the tests.
- * @type {Object<Entry>}
+ * @type {Object<FileSystemEntry>}
*/
entries: {},
/**
* File system for the testing volume.
- * @type {DOMFileSystem}
+ * @type {FileSystem}
*/
fileSystem: null
};

Powered by Google App Engine
This is Rietveld 408576698