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

Unified Diff: chrome/test/chromedriver/js/execute_async_script.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/test/chromedriver/js/execute_async_script.js
diff --git a/chrome/test/chromedriver/js/execute_async_script.js b/chrome/test/chromedriver/js/execute_async_script.js
index c55c65bbb5270f484cafb56ef43cd6a872b3dc79..f022ce51daa8f24739cbe8159740a8d41ff05123 100644
--- a/chrome/test/chromedriver/js/execute_async_script.js
+++ b/chrome/test/chromedriver/js/execute_async_script.js
@@ -22,7 +22,7 @@ var ASYNC_INFO_KEY = '$chrome_asyncScriptInfo';
/**
* Return the information of asynchronous script execution.
*
-* @return {Object.<string, ?>} Information of asynchronous script execution.
+* @return {Object<string, ?>} Information of asynchronous script execution.
*/
function getAsyncScriptInfo() {
if (!(ASYNC_INFO_KEY in document))
@@ -40,7 +40,7 @@ function getAsyncScriptInfo() {
* should be a proper function body. It will be wrapped in a function and
* invoked with the given arguments and, as the final argument, a callback
* function to invoke to report the asynchronous result.
-* @param {!Array.<*>} args Arguments to be passed to the script.
+* @param {!Array<*>} args Arguments to be passed to the script.
* @param {boolean} isUserSupplied Whether the script is supplied by the user.
* If not, UnknownError will be used instead of JavaScriptError if an
* exception occurs during the script, and an additional error callback will
« no previous file with comments | « chrome/test/chromedriver/js/call_function.js ('k') | components/dom_distiller/webui/resources/about_dom_distiller.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698