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

Unified Diff: remoting/webapp/crd/js/client_plugin_impl.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/cast_extension_handler.js ('k') | remoting/webapp/crd/js/client_session.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_plugin_impl.js
diff --git a/remoting/webapp/crd/js/client_plugin_impl.js b/remoting/webapp/crd/js/client_plugin_impl.js
index 1528c8c78c4a0c82ebe08eea1fb109bcf133ded7..a4ef19fa6eedcb358b13e39e9ab3be1e88de9815 100644
--- a/remoting/webapp/crd/js/client_plugin_impl.js
+++ b/remoting/webapp/crd/js/client_plugin_impl.js
@@ -42,10 +42,7 @@ remoting.ClientPluginImpl = function(container, onExtensionMessage,
container.appendChild(this.plugin_);
this.onExtensionMessage_ = onExtensionMessage;
- /**
- * @type {Array<string>}
- * @private
- */
+ /** @private {Array<string>} */
this.requiredCapabilities_ = requiredCapabilities;
/**
@@ -102,45 +99,21 @@ remoting.ClientPluginImpl = function(container, onExtensionMessage,
/** @private {?function({rects:Array<Array<number>>}):void} */
this.debugRegionHandler_ = null;
- /**
- * @type {number}
- * @private
- */
+ /** @private {number} */
this.pluginApiVersion_ = -1;
- /**
- * @type {Array<string>}
- * @private
- */
+ /** @private {Array<string>} */
this.pluginApiFeatures_ = [];
- /**
- * @type {number}
- * @private
- */
+ /** @private {number} */
this.pluginApiMinVersion_ = -1;
- /**
- * @type {!Array<string>}
- * @private
- */
+ /** @private {!Array<string>} */
this.capabilities_ = [];
- /**
- * @type {boolean}
- * @private
- */
+ /** @private {boolean} */
this.helloReceived_ = false;
- /**
- * @type {function(boolean)|null}
- * @private
- */
+ /** @private {function(boolean)|null} */
this.onInitializedCallback_ = null;
- /**
- * @type {function(string, string):void}
- * @private
- */
+ /** @private {function(string, string):void} */
this.onPairingComplete_ = function(clientId, sharedSecret) {};
- /**
- * @type {remoting.ClientSession.PerfStats}
- * @private
- */
+ /** @private {remoting.ClientSession.PerfStats} */
this.perfStats_ = new remoting.ClientSession.PerfStats();
/** @type {remoting.ClientPluginImpl} */
« no previous file with comments | « remoting/webapp/crd/js/cast_extension_handler.js ('k') | remoting/webapp/crd/js/client_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698