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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/chrome/host.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/chrome/host.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/host.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/host.js
index c5e8e440464f299e5a4662cc136606caabcdad05..dda8a892bccfbb8f1b921a577658f14520c0e7f0 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/chrome/host.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/host.js
@@ -70,7 +70,7 @@ cvox.ChromeHost.prototype.init = function() {
if (prefs['position']) {
cvox.ChromeVox.position =
- /** @type {Object.<string, {x:number, y:number}>} */ (
+ /** @type {Object<string, {x:number, y:number}>} */ (
JSON.parse(prefs['position']));
}

Powered by Google App Engine
This is Rietveld 408576698