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

Unified Diff: chrome/test/chromedriver/js/call_function.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
« no previous file with comments | « chrome/test/base/js2gtest.js ('k') | chrome/test/chromedriver/js/execute_async_script.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/js/call_function.js
diff --git a/chrome/test/chromedriver/js/call_function.js b/chrome/test/chromedriver/js/call_function.js
index 66f3c5709688bd7036823111579292faafe81ada..ab1551b1fa8ccfc0e19790196fb2aeb3d5b52446 100644
--- a/chrome/test/chromedriver/js/call_function.js
+++ b/chrome/test/chromedriver/js/call_function.js
@@ -196,10 +196,10 @@ function unwrap(value, cache) {
* between cached object reference IDs and actual JS objects. The cache will
* automatically be pruned each call to remove stale references.
*
- * @param {Array.<string>} shadowHostIds The host ids of the nested shadow
+ * @param {Array<string>} shadowHostIds The host ids of the nested shadow
* DOMs the function should be executed in the context of.
* @param {function(...[*]) : *} func The function to invoke.
- * @param {!Array.<*>} args The array of arguments to supply to the function,
+ * @param {!Array<*>} args The array of arguments to supply to the function,
* which will be unwrapped before invoking the function.
* @param {boolean=} opt_unwrappedReturn Whether the function's return value
* should be left unwrapped.
« no previous file with comments | « chrome/test/base/js2gtest.js ('k') | chrome/test/chromedriver/js/execute_async_script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698