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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/braille_util.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/common/braille_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/braille_util.js b/chrome/browser/resources/chromeos/chromevox/common/braille_util.js
index e73e7c6e34159be036ef4303677ba42fdb368adb..bc133b7c5ddc0626d956342f19fb90a3b446cfa1 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/braille_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/braille_util.js
@@ -33,7 +33,7 @@ cvox.BrailleUtil.ITEM_SEPARATOR = ' ';
* Containers are distinguished from roles by their appearance higher up in the
* DOM tree of a selected node.
* This list should be very short.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.BrailleUtil.CONTAINER = [
'tag_h1_brl',
@@ -54,7 +54,7 @@ cvox.BrailleUtil.CONTAINER = [
* c: replaced with braille container role; this potentially returns whitespace,
* so place at the beginning or end of templates for trimming.
* v: replaced with braille value.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
cvox.BrailleUtil.TEMPLATE = {
'base': 'c n v r s',

Powered by Google App Engine
This is Rietveld 408576698