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

Unified Diff: chrome/browser/resources/chromeos/chromevox/extensions/searchvox/search.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/extensions/searchvox/search.js
diff --git a/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/search.js b/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/search.js
index 4b53144adee34d58dc0e726e9510b4231cd63b5a..ad7feb0d57356aea168b39eecc229922c00d1521 100644
--- a/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/search.js
+++ b/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/search.js
@@ -23,7 +23,7 @@ cvox.Search = function() {
/**
* Selectors to match results.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
cvox.Search.selectors = {};
@@ -56,13 +56,13 @@ cvox.Search.index;
/**
* Array of the search results.
- * @type {Array.<Element>}
+ * @type {Array<Element>}
*/
cvox.Search.results = [];
/**
* Array of the navigation panes.
- * @type {Array.<Element>}
+ * @type {Array<Element>}
*/
cvox.Search.panes = [];

Powered by Google App Engine
This is Rietveld 408576698