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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.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/host/interface/abstract_tts.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
index ae4346bbe0b43f9e231bb8682fd07babb981ffc8..835f3fb4719e072abdb7e10fd2e5fe69bea51935 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
@@ -422,7 +422,7 @@ cvox.AbstractTts.DEBUG = true;
/**
* Character dictionary. These symbols are replaced with their human readable
* equivalents. This replacement only occurs for single character utterances.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
cvox.AbstractTts.CHARACTER_DICTIONARY = {
' ': 'space',
@@ -469,7 +469,7 @@ cvox.AbstractTts.CHARACTER_DICTIONARY = {
* should be spelled out the way most TTS engines will pronounce it
* correctly. This particular dictionary only handles letters and numbers,
* no symbols.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
cvox.AbstractTts.PRONUNCIATION_DICTIONARY = {
'admob': 'ad-mob',
@@ -509,7 +509,7 @@ cvox.AbstractTts.pronunciationDictionaryRegexp_;
*
* For example, do not include '$' here because $2 should be read as
* "two dollars".
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
cvox.AbstractTts.SUBSTITUTION_DICTIONARY = {
'://': 'colon slash slash',

Powered by Google App Engine
This is Rietveld 408576698