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

Unified Diff: remoting/webapp/crd/js/cast_extension_handler.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/activation_handler.js ('k') | remoting/webapp/crd/js/client_plugin_impl.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/cast_extension_handler.js
diff --git a/remoting/webapp/crd/js/cast_extension_handler.js b/remoting/webapp/crd/js/cast_extension_handler.js
index efd8efc135c8f909fcdb13bd7d961107bbf18c2f..5957a165136afe228a209123649d71e30752125c 100644
--- a/remoting/webapp/crd/js/cast_extension_handler.js
+++ b/remoting/webapp/crd/js/cast_extension_handler.js
@@ -29,16 +29,16 @@ remoting.CastExtensionHandler = function(clientSession) {
/** @private */
this.clientSession_ = clientSession;
- /** @type {chrome.cast.Session} @private */
+ /** @private {chrome.cast.Session} */
this.session_ = null;
- /** @type {string} @private */
+ /** @private {string} */
this.kCastNamespace_ = 'urn:x-cast:com.chromoting.cast.all';
- /** @type {string} @private */
+ /** @private {string} */
this.kApplicationId_ = "8A1211E3";
- /** @type {Array<Object>} @private */
+ /** @private {Array<Object>} */
this.messageQueue_ = [];
this.start_();
« no previous file with comments | « remoting/webapp/crd/js/activation_handler.js ('k') | remoting/webapp/crd/js/client_plugin_impl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698