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

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

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 months 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 55d16f996424fe71983358ebe68015c679919228..ac7f7c87b4b7562da82cc7015352e8e4c85bb0a7 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
@@ -28,7 +28,7 @@ function TestEventListener() {
* Set of events that are expected to be triggered during the test. Each
* object property represents one expected event.
*
- * @type {Object.<string, Object>}
+ * @type {Object<string, Object>}
* @private
*/
this.expectedEvents_ = {};
@@ -37,7 +37,7 @@ function TestEventListener() {
* List of fileManagerPrivate.onDirectoryChanged events received before file
* system operation was done.
*
- * @type {Array.<Object>}
+ * @type {Array<Object>}
* @private
*/
this.eventQueue_ = [];
@@ -219,7 +219,7 @@ function initTests(callback) {
isOnDrive: false,
/**
* Set of entries that are being watched during the tests.
- * @type {Object.<Entry>}
+ * @type {Object<Entry>}
*/
entries: {},
/**

Powered by Google App Engine
This is Rietveld 408576698