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

Unified Diff: remoting/webapp/crd/js/client_session.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/client_plugin_impl.js ('k') | remoting/webapp/crd/js/clipboard.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_session.js
diff --git a/remoting/webapp/crd/js/client_session.js b/remoting/webapp/crd/js/client_session.js
index 4fa47c926192b68632a9f5b41536c6f981c8e6c9..0572d95668c7875153f9742f85dbb13047dd3cf1 100644
--- a/remoting/webapp/crd/js/client_session.js
+++ b/remoting/webapp/crd/js/client_session.js
@@ -66,8 +66,7 @@ remoting.ClientSession = function(host, signalStrategy, credentialsProvider,
/** @private */
this.sessionId_ = '';
- /** @type {remoting.ClientPlugin}
- * @private */
+ /** @private {remoting.ClientPlugin} */
this.plugin_ = null;
/** @private */
this.hasReceivedFrame_ = false;
@@ -89,10 +88,10 @@ remoting.ClientSession = function(host, signalStrategy, credentialsProvider,
*/
this.logHostOfflineErrors_ = true;
- /** @type {remoting.GnubbyAuthHandler} @private */
+ /** @private {remoting.GnubbyAuthHandler} */
this.gnubbyAuthHandler_ = null;
- /** @type {remoting.CastExtensionHandler} @private */
+ /** @private {remoting.CastExtensionHandler} */
this.castExtensionHandler_ = null;
this.defineEvents(Object.keys(remoting.ClientSession.Events));
« no previous file with comments | « remoting/webapp/crd/js/client_plugin_impl.js ('k') | remoting/webapp/crd/js/clipboard.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698