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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/history.js

Issue 924083004: Shorten Closure template notation from Array.<*> to Array<*> in cvox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/browser/resources/chromeos/chromevox/chromevox/injected/history.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/history.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/history.js
index 615ee04b04ddcfbbb14b6783213aeca4d342372c..6db9d0de41f75f7d96cfd0adde5a84fa5106903f 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/history.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/history.js
@@ -42,7 +42,7 @@ cvox.HistoryEvent = function(opt_json) {
/**
* An array of spoken output.
- * @type {Array.<string>}
+ * @type {Array<string>}
* @private
*/
this.spoken_ = [];
@@ -347,6 +347,7 @@ cvox.History.prototype.increaseOrDecreaseProperty =
cvox.History.prototype.getDefaultProperty = function(property) { };
+/** TODO: add doc comment. */
cvox.History.dumpJs = function() {
var history = cvox.History.getInstance();
history.addBigTextBox_();
@@ -355,7 +356,7 @@ cvox.History.dumpJs = function() {
/**
- * @param {Array.<string>=} opt_skipCommands
+ * @param {Array<string>=} opt_skipCommands
* @return {string} A string of Javascript output.
* @private
*/

Powered by Google App Engine
This is Rietveld 408576698