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

Side by Side Diff: remoting/webapp/crd/js/fallback_signal_strategy.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 unified diff | Download patch
« no previous file with comments | « remoting/webapp/crd/js/event_handlers.js ('k') | remoting/webapp/crd/js/host.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 'use strict'; 5 'use strict';
6 6
7 /** @suppress {duplicate} */ 7 /** @suppress {duplicate} */
8 var remoting = remoting || {}; 8 var remoting = remoting || {};
9 9
10 /** 10 /**
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 */ 104 */
105 this.primaryConnectTimerId_ = 0; 105 this.primaryConnectTimerId_ = 0;
106 106
107 /** 107 /**
108 * @type {remoting.LogToServer} 108 * @type {remoting.LogToServer}
109 * @private 109 * @private
110 */ 110 */
111 this.logToServer_ = null; 111 this.logToServer_ = null;
112 112
113 /** 113 /**
114 * @type {Array.<{strategyType: remoting.SignalStrategy.Type, 114 * @type {Array<{strategyType: remoting.SignalStrategy.Type,
115 progress: remoting.FallbackSignalStrategy.Progress, 115 progress: remoting.FallbackSignalStrategy.Progress,
116 * elapsed: number}>} 116 * elapsed: number}>}
117 */ 117 */
118 this.connectionSetupResults_ = []; 118 this.connectionSetupResults_ = [];
119 119
120 /** 120 /**
121 * @type {number} 121 * @type {number}
122 * @private 122 * @private
123 */ 123 */
124 this.startTime_ = 0; 124 this.startTime_ = 0;
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 progress); 391 progress);
392 this.connectionSetupResults_.push({ 392 this.connectionSetupResults_.push({
393 'strategyType': strategy.getType(), 393 'strategyType': strategy.getType(),
394 'progress': progress, 394 'progress': progress,
395 'elapsed': new Date().getTime() - this.startTime_ 395 'elapsed': new Date().getTime() - this.startTime_
396 }); 396 });
397 if (this.logToServer_) { 397 if (this.logToServer_) {
398 this.sendConnectionSetupResultsInternal_(); 398 this.sendConnectionSetupResultsInternal_();
399 } 399 }
400 }; 400 };
OLDNEW
« no previous file with comments | « remoting/webapp/crd/js/event_handlers.js ('k') | remoting/webapp/crd/js/host.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698