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

Unified Diff: remoting/webapp/crd/js/dns_blackhole_checker.js

Issue 983023002: [Chromoting] Use compact notation for javascript @private types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/desktop_remoting.js ('k') | remoting/webapp/crd/js/fallback_signal_strategy.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/dns_blackhole_checker.js
diff --git a/remoting/webapp/crd/js/dns_blackhole_checker.js b/remoting/webapp/crd/js/dns_blackhole_checker.js
index 6bc3a7d2abe3b9e506e273de982fa07c84a73b59..19178c153540290ecaa8b307d909d3c82f83841e 100644
--- a/remoting/webapp/crd/js/dns_blackhole_checker.js
+++ b/remoting/webapp/crd/js/dns_blackhole_checker.js
@@ -29,7 +29,7 @@ remoting.DnsBlackholeChecker = function(signalStrategy) {
this.signalStrategy_.setStateChangedCallback(
this.onWrappedSignalStrategyStateChanged_.bind(this));
- /** @type {?function(remoting.SignalStrategy.State):void} @private */
+ /** @private {?function(remoting.SignalStrategy.State):void} */
this.onStateChangedCallback_ = null;
/** @private */
@@ -38,7 +38,7 @@ remoting.DnsBlackholeChecker = function(signalStrategy) {
/** @private */
this.blackholeState_ = BlackholeState.PENDING;
- /** @type {?XMLHttpRequest} @private */
+ /** @private {?XMLHttpRequest} */
this.xhr_ = null;
};
« no previous file with comments | « remoting/webapp/crd/js/desktop_remoting.js ('k') | remoting/webapp/crd/js/fallback_signal_strategy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698