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

Unified Diff: remoting/webapp/crd/js/crd_event_handlers.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 | « remoting/webapp/crd/js/connection_stats.js ('k') | remoting/webapp/crd/js/desktop_connected_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/crd_event_handlers.js
diff --git a/remoting/webapp/crd/js/crd_event_handlers.js b/remoting/webapp/crd/js/crd_event_handlers.js
index 9196e6b3792fc4bae2e7d473d57ada92f35bf7f1..4d21a5a8ee739a4e38bc620cbb4f27df8ca403a6 100644
--- a/remoting/webapp/crd/js/crd_event_handlers.js
+++ b/remoting/webapp/crd/js/crd_event_handlers.js
@@ -47,7 +47,7 @@ remoting.initElementEventHandlers = function() {
remoting.setMode(remoting.AppMode.HOME);
document.getElementById('access-code-entry').value = '';
};
- /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
+ /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
var it2me_actions = [
{ event: 'click', id: 'access-mode-button', fn: goEnterAccessCode },
{ event: 'submit', id: 'access-code-form', fn: sendAccessCode },
@@ -59,7 +59,7 @@ remoting.initElementEventHandlers = function() {
{ event: 'click', id: 'host-finished-button', fn: goHome },
{ event: 'click', id: 'share-button', fn: remoting.tryShare }
];
- /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
+ /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
var me2me_actions = [
{ event: 'click', id: 'change-daemon-pin',
fn: function() { remoting.hostSetupDialog.showForPin(); } },
@@ -72,7 +72,7 @@ remoting.initElementEventHandlers = function() {
fn: function() { remoting.hostSetupDialog.showForStart(); } },
{ event: 'click', id: 'stop-daemon', fn: stopDaemon }
];
- /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
+ /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
var host_actions = [
{ event: 'click', id: 'close-paired-client-manager-dialog', fn: goHome },
{ event: 'click', id: 'host-config-done-dismiss', fn: goHome },
@@ -82,7 +82,7 @@ remoting.initElementEventHandlers = function() {
remoting.AppMode.HOME_MANAGE_PAIRINGS) },
{ event: 'click', id: 'stop-sharing-button', fn: remoting.cancelShare }
];
- /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
+ /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
var auth_actions = [
{ event: 'click', id: 'cancel-connect-button', fn: goHome },
{ event: 'click', id: 'sign-out', fn:remoting.signOut },
« no previous file with comments | « remoting/webapp/crd/js/connection_stats.js ('k') | remoting/webapp/crd/js/desktop_connected_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698