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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.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/cvox2/background/output.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
index 1f2e930091e873d7701b2a24edceb2643b19e463..2c02cd35b07b552f4066a47f2ded8f65a30d586d 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
@@ -48,7 +48,7 @@ Output = function() {
this.buffer_ = new cvox.Spannable();
/** @type {!cvox.Spannable} */
this.brailleBuffer_ = new cvox.Spannable();
- /** @type {!Array.<Object>} */
+ /** @type {!Array<Object>} */
this.locations_ = [];
/** @type {function()} */
this.speechStartCallback_;
@@ -65,7 +65,7 @@ Output = function() {
/**
* Speech properties to apply to the entire output.
- * @type {!Object.<string, *>}
+ * @type {!Object<string, *>}
*/
this.speechProperties_ = {};
};
@@ -78,7 +78,7 @@ Output.SPACE = ' ';
/**
* Rules specifying format of AutomationNodes for output.
- * @type {!Object.<string, Object.<string, Object.<string, string>>>}
+ * @type {!Object<string, Object<string, Object<string, string>>>}
*/
Output.RULES = {
navigate: {
@@ -194,7 +194,7 @@ Output.RULES = {
/**
* Alias equivalent attributes.
- * @type {!Object.<string, string>}
+ * @type {!Object<string, string>}
*/
Output.ATTRIBUTE_ALIAS = {
name: 'value',

Powered by Google App Engine
This is Rietveld 408576698