| Index: remoting/webapp/js_proto/remoting_proto.js
|
| diff --git a/remoting/webapp/js_proto/remoting_proto.js b/remoting/webapp/js_proto/remoting_proto.js
|
| index a1092c5e227b6a97582be3b9e80fe952b5cf463a..52252e1cb209697660799fdd8078d1a460d30844 100644
|
| --- a/remoting/webapp/js_proto/remoting_proto.js
|
| +++ b/remoting/webapp/js_proto/remoting_proto.js
|
| @@ -163,3 +163,24 @@ remoting.ViewerPlugin = function() { };
|
|
|
| /** @param {string} message The message to send to the host. */
|
| remoting.ViewerPlugin.prototype.postMessage = function(message) {};
|
| +
|
| +
|
| +/** @constructor
|
| + */
|
| +remoting.WcsIqClient = function() {};
|
| +
|
| +/** @param {function(Array.<string>): void} onMsg The function called when a
|
| + * message is received.
|
| + * @return {void} Nothing. */
|
| +remoting.WcsIqClient.prototype.setOnMessage = function(onMsg) {};
|
| +
|
| +/** @return {void} Nothing. */
|
| +remoting.WcsIqClient.prototype.connectChannel = function() {};
|
| +
|
| +/** @param {string} stanza An IQ stanza.
|
| + * @return {void} Nothing. */
|
| +remoting.WcsIqClient.prototype.sendIq = function(stanza) {};
|
| +
|
| +/** @param {string} token An OAuth2 access token.
|
| + * @return {void} Nothing. */
|
| +remoting.WcsIqClient.prototype.updateAccessToken = function(token) {};
|
|
|