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

Unified Diff: chrome/test/data/webui/mock_timer.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
« no previous file with comments | « chrome/test/data/webui/mock_controller.js ('k') | chrome/test/data/webui/net_internals/events_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/mock_timer.js
diff --git a/chrome/test/data/webui/mock_timer.js b/chrome/test/data/webui/mock_timer.js
index ded92bdaa703f9af543ee9d373ab5bcce30622a7..37f5f6cfe130bb49606e90a2f4357270bd1d0dcb 100644
--- a/chrome/test/data/webui/mock_timer.js
+++ b/chrome/test/data/webui/mock_timer.js
@@ -9,7 +9,7 @@
function MockTimer() {
/**
* Default versions of the timing functions.
- * @type {Object.<string, !Function>}
+ * @type {Object<string, !Function>}
* @private
*/
this.originals_ = [];
@@ -25,7 +25,7 @@ function MockTimer() {
/**
* Details for active timers.
- * @type {Array.<{callback: Function,
+ * @type {Array<{callback: Function,
* delay: number,
* key: number,
* repeats: boolean}>}
@@ -35,7 +35,7 @@ function MockTimer() {
/**
* List of scheduled tasks.
- * @type {Array.<{when: number, key: number}>}
+ * @type {Array<{when: number, key: number}>}
* @private
*/
this.schedule_ = [];
« no previous file with comments | « chrome/test/data/webui/mock_controller.js ('k') | chrome/test/data/webui/net_internals/events_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698