| Index: remoting/webapp/crd/js/xmpp_connection.js
|
| diff --git a/remoting/webapp/crd/js/xmpp_connection.js b/remoting/webapp/crd/js/xmpp_connection.js
|
| index d54dd920b62dd09103979097b6c1df1087abd6c4..e7244d4ab7b5c6603739c81b3219607b61997cda 100644
|
| --- a/remoting/webapp/crd/js/xmpp_connection.js
|
| +++ b/remoting/webapp/crd/js/xmpp_connection.js
|
| @@ -150,6 +150,14 @@ remoting.XmppConnection.prototype.sendMessage = function(message) {
|
| this.sendString_(message);
|
| };
|
|
|
| +/**
|
| + * @param {remoting.LogToServer} logToServer The LogToServer instance for the
|
| + * connection.
|
| + */
|
| +remoting.XmppConnection.prototype.sendConnectionSetupResults =
|
| + function(logToServer) {
|
| +};
|
| +
|
| /** @return {remoting.SignalStrategy.State} Current state */
|
| remoting.XmppConnection.prototype.getState = function() {
|
| return this.state_;
|
| @@ -165,6 +173,11 @@ remoting.XmppConnection.prototype.getJid = function() {
|
| return this.jid_;
|
| };
|
|
|
| +/** @return {remoting.SignalStrategy.Type} The signal strategy type. */
|
| +remoting.XmppConnection.prototype.getType = function() {
|
| + return remoting.SignalStrategy.Type.XMPP;
|
| +};
|
| +
|
| remoting.XmppConnection.prototype.dispose = function() {
|
| this.closeSocket_();
|
| this.setState_(remoting.SignalStrategy.State.CLOSED);
|
|
|