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

Unified Diff: chrome/browser/resources/uber/uber_utils.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/resources/uber/uber_utils.js
diff --git a/chrome/browser/resources/uber/uber_utils.js b/chrome/browser/resources/uber/uber_utils.js
index d4f30db61d303cf6751b5abc37b0d03b81c15010..9964321b1519e6f6003cb43cfd7e39f572d8a428 100644
--- a/chrome/browser/resources/uber/uber_utils.js
+++ b/chrome/browser/resources/uber/uber_utils.js
@@ -67,7 +67,7 @@ cr.define('uber', function() {
* @param {Event} e The message event.
*/
function handleWindowMessage(e) {
- e = /** @type {!MessageEvent.<!{method: string, params: *}>} */(e);
+ e = /** @type {!MessageEvent<!{method: string, params: *}>} */(e);
if (e.data.method === 'frameSelected') {
handleFrameSelected();
} else if (e.data.method === 'mouseWheel') {
« no previous file with comments | « chrome/browser/resources/uber/uber.js ('k') | chrome/browser/ui/webui/options/chromeos/bluetooth_options_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698