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

Unified Diff: chrome/browser/ui/webui/options/options_browsertest.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox 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/ui/webui/options/options_browsertest.js
diff --git a/chrome/browser/ui/webui/options/options_browsertest.js b/chrome/browser/ui/webui/options/options_browsertest.js
index 1e2228649a61fe644d85064f2846c97603f26579..d2c068a626f9acb9173815a5db07cce2c44d0f93 100644
--- a/chrome/browser/ui/webui/options/options_browsertest.js
+++ b/chrome/browser/ui/webui/options/options_browsertest.js
@@ -413,7 +413,7 @@ OptionsWebUIExtendedTest.prototype = {
/**
* Verifies that the correct pages are currently open/visible.
- * @param {!Array.<string>} expectedPages An array of page names expected to
+ * @param {!Array<string>} expectedPages An array of page names expected to
* be open, with the topmost listed last.
* @param {string=} opt_expectedUrl The URL path, including hash, expected to
* be open. If undefined, the topmost (last) page name in |expectedPages|
@@ -457,7 +457,7 @@ OptionsWebUIExtendedTest.prototype = {
/*
* Verifies that the correct URLs are listed in the history. Asynchronous.
- * @param {!Array.<string>} expectedHistory An array of URL paths expected to
+ * @param {!Array<string>} expectedHistory An array of URL paths expected to
* be in the tab navigation history, sorted by visit time, including the
* current page as the last entry. The base URL (chrome://settings-frame/)
* will be prepended to each. An initial 'about:blank' history entry is

Powered by Google App Engine
This is Rietveld 408576698