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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/aural_style_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/aural_style_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/aural_style_util.js b/chrome/browser/resources/chromeos/chromevox/common/aural_style_util.js
index 568084bccf5c2bd3d3e9d3a584641d573b5087a2..0e8c3b5cf57629440454ef9d2810c3458bd93f1b 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/aural_style_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/aural_style_util.js
@@ -55,7 +55,7 @@ cvox.AuralStyleConverter.identity = function(value) {
* Conversion from an aural style property to Chrome TTS property.
* TODO(dtseng): no-op's below need to be supported by the extension API itself
* or by ChromeVox.
- * @type {Object.<cvox.AuralProperty, string>}
+ * @type {Object<cvox.AuralProperty, string>}
*/
cvox.AuralStyleConverter.propertyTable = {
VOLUME: 'volume',
@@ -86,7 +86,7 @@ cvox.AuralStyleConverter.propertyTable = {
* Conversion from an aural style value to Chrome TTS value.
* TODO(dtseng): Conversion of aural CSS values is incomplete; everything is an
* identity conversion at the moment.
- * @type {Object.<cvox.AuralProperty, function(*)>}
+ * @type {Object<cvox.AuralProperty, function(*)>}
*/
cvox.AuralStyleConverter.valueTable = {
VOLUME: cvox.AuralStyleConverter.identity,
@@ -129,7 +129,7 @@ cvox.AuralStyleConverter.convertRule = function(property, value) {
/**
* Converts an aural CSS style block to a TTS property object.
- * @param {Object.<cvox.AuralProperty, *>} style The style.
+ * @param {Object<cvox.AuralProperty, *>} style The style.
* @return {Object} The tts property object.
*/
cvox.AuralStyleConverter.convertStyle = function(style) {

Powered by Google App Engine
This is Rietveld 408576698