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

Unified Diff: chrome/browser/resources/network_speech_synthesis/tts_extension.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox 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/network_speech_synthesis/tts_extension.js
diff --git a/chrome/browser/resources/network_speech_synthesis/tts_extension.js b/chrome/browser/resources/network_speech_synthesis/tts_extension.js
index ebe9227f72844de4f3c2aecce385f082fc68899f..905fbfe3d71d4dfcaddf503e086f9c89215bf30d 100644
--- a/chrome/browser/resources/network_speech_synthesis/tts_extension.js
+++ b/chrome/browser/resources/network_speech_synthesis/tts_extension.js
@@ -38,7 +38,7 @@ TtsExtension.prototype = {
* A mapping from language and gender to voice name, hardcoded for now
* until the speech synthesis server capabilities response provides this.
* The key of this map is of the form '<lang>-<gender>'.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
* @private
*/
LANG_AND_GENDER_TO_VOICE_NAME_: {
@@ -68,7 +68,7 @@ TtsExtension.prototype = {
* A mapping from voice name to language and gender, derived from the
* manifest file. This is used in case the speech synthesis request
* specifies a voice name but doesn't specify a language code or gender.
- * @type {Object.<string, {lang: string, gender: string}>}
+ * @type {Object<string, {lang: string, gender: string}>}
* @private
*/
voiceNameToLangAndGender_: {},
« no previous file with comments | « chrome/browser/resources/net_internals/dns_view.js ('k') | chrome/browser/resources/ntp4/most_visited_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698