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} */ |