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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.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/chromevox/injected/ui/search_widget.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
index 479adbcd54b69004b6d9c43befa7e826b942fbe1..32a8cf2a06859d680f0bd25b4522d6e39c760813 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
@@ -230,7 +230,7 @@ cvox.SearchWidget.prototype.onNavigate = function() {
/**
* Gets the predicate to apply to every search.
- * @return {?function(Array.<Node>)} A predicate; if null, no predicate applies.
+ * @return {?function(Array<Node>)} A predicate; if null, no predicate applies.
*/
cvox.SearchWidget.prototype.getPredicate = function() {
return null;
@@ -240,7 +240,7 @@ cvox.SearchWidget.prototype.getPredicate = function() {
/**
* Goes to the next or previous result. For use in AndroidVox.
* @param {boolean=} opt_reverse Whether to find the next result in reverse.
- * @return {Array.<cvox.NavDescription>} The next result.
+ * @return {Array<cvox.NavDescription>} The next result.
*/
cvox.SearchWidget.prototype.nextResult = function(opt_reverse) {
if (!this.isActive()) {
@@ -337,7 +337,7 @@ cvox.SearchWidget.prototype.toggleCaseSensitivity_ = function() {
* Gets the next result.
*
* @param {string} searchStr The text to search for.
- * @return {Array.<cvox.NavDescription>} The next result, in the form of
+ * @return {Array<cvox.NavDescription>} The next result, in the form of
* NavDescriptions.
* @private
*/
@@ -403,7 +403,7 @@ cvox.SearchWidget.prototype.beginSearch_ = function(searchStr) {
*
* @param {string} searchStr The text to search for.
* @param {boolean=} opt_reversed The direction.
- * @return {Array.<cvox.NavDescription>} The next result.
+ * @return {Array<cvox.NavDescription>} The next result.
* @private
*/
cvox.SearchWidget.prototype.next_ = function(searchStr, opt_reversed) {
@@ -412,7 +412,7 @@ cvox.SearchWidget.prototype.next_ = function(searchStr, opt_reversed) {
var success = false;
if (this.getPredicate()) {
success = cvox.ChromeVox.navigationManager.findNext(
- /** @type {function(Array.<Node>)} */ (this.getPredicate()));
+ /** @type {function(Array<Node>)} */ (this.getPredicate()));
// TODO(dtseng): findNext always seems to point direction forward!
cvox.ChromeVox.navigationManager.setReversed(!!opt_reversed);
if (!success) {
@@ -435,7 +435,7 @@ cvox.SearchWidget.prototype.next_ = function(searchStr, opt_reversed) {
* speak it, focus the node if applicable, and speak some instructions
* at the end.
*
- * @param {Array.<cvox.NavDescription>} result The description of the next
+ * @param {Array<cvox.NavDescription>} result The description of the next
* result. If null, no more results were found and an error will be presented.
* @param {string} searchStr The text to search for.
* @private

Powered by Google App Engine
This is Rietveld 408576698