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

Unified Diff: chrome/browser/resources/chromeos/chromevox/speech_rules/math_simple_store.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/speech_rules/math_simple_store.js
diff --git a/chrome/browser/resources/chromeos/chromevox/speech_rules/math_simple_store.js b/chrome/browser/resources/chromeos/chromevox/speech_rules/math_simple_store.js
index 33d727d37af51983c42cabef4d31c0ecae9b0b1b..4136c84589e997eea8c1c0817a9569715254e7f6 100644
--- a/chrome/browser/resources/chromeos/chromevox/speech_rules/math_simple_store.js
+++ b/chrome/browser/resources/chromeos/chromevox/speech_rules/math_simple_store.js
@@ -34,7 +34,7 @@ goog.inherits(cvox.MathSimpleStore, cvox.MathStore);
* only into a list of speech rules.
* @param {string} name Name for the rules.
* @param {string} str String for precondition and constraints.
- * @param {Object.<string, Object.<string, string>>} mapping Simple string
+ * @param {Object<string, Object<string, string>>} mapping Simple string
* mapping.
*/
cvox.MathSimpleStore.prototype.defineRulesFromMappings = function(
@@ -58,7 +58,7 @@ cvox.MathSimpleStore.prototype.defineRulesFromMappings = function(
cvox.MathCompoundStore = function() {
/**
* A set of efficient substores.
- * @type {Object.<string, cvox.MathStore>}
+ * @type {Object<string, cvox.MathStore>}
* @private
*/
this.subStores_ = {};
@@ -142,7 +142,7 @@ cvox.MathCompoundStore.prototype.lookupString = function(text, dynamic) {
/**
* Get a set of all dynamic constraint values.
- * @return {!Object.<cvox.SpeechRule.DynamicCstrAttrib, Array.<string>>} The
+ * @return {!Object<cvox.SpeechRule.DynamicCstrAttrib, Array<string>>} The
* object with all annotations.
*/
cvox.MathCompoundStore.prototype.getDynamicConstraintValues = function() {

Powered by Google App Engine
This is Rietveld 408576698