| Index: remoting/webapp/crd/js/session_connector_impl.js
|
| diff --git a/remoting/webapp/crd/js/session_connector_impl.js b/remoting/webapp/crd/js/session_connector_impl.js
|
| index 13def395a28b4a4cc4633f4fe91f07671d0d7d90..4259db584bef344036ed6b04a23aa3518d6cc30f 100644
|
| --- a/remoting/webapp/crd/js/session_connector_impl.js
|
| +++ b/remoting/webapp/crd/js/session_connector_impl.js
|
| @@ -88,6 +88,9 @@ remoting.SessionConnectorImpl = function(clientContainer, onConnected, onError,
|
| remoting.SessionConnectorImpl.prototype.resetConnection_ = function() {
|
| this.removePlugin_();
|
|
|
| + // It's OK to initialize these member variables here because the
|
| + // constructor calls this method.
|
| +
|
| /** @private {remoting.Host} */
|
| this.host_ = null;
|
|
|
| @@ -103,9 +106,6 @@ remoting.SessionConnectorImpl.prototype.resetConnection_ = function() {
|
| /** @private {remoting.DesktopConnectedView} */
|
| this.connectedView_ = null;
|
|
|
| - /** @private {XMLHttpRequest} */
|
| - this.pendingXhr_ = null;
|
| -
|
| /** @private {remoting.CredentialsProvider} */
|
| this.credentialsProvider_ = null;
|
|
|
|
|