Index: remoting/webapp/host_plugin_proto.js |
diff --git a/remoting/webapp/host_plugin_proto.js b/remoting/webapp/host_plugin_proto.js |
index a64ac463acf52ab1d660a2ce887ec4be915e28f3..4246a86d1f52aae7b7ab10e321907e85618c275f 100644 |
--- a/remoting/webapp/host_plugin_proto.js |
+++ b/remoting/webapp/host_plugin_proto.js |
@@ -25,6 +25,13 @@ remoting.HostPlugin.prototype.disconnect = function() {}; |
* @return {void} Nothing. */ |
remoting.HostPlugin.prototype.localize = function(callback) {}; |
+/** @param {string} pin The PIN to use for authentication. |
+ * @return {void} Nothing. */ |
+remoting.HostPlugin.prototype.startDaemon = function(pin) {}; |
+ |
+/** @return {void} Nothing. */ |
+remoting.HostPlugin.prototype.stopDaemon = function() {}; |
+ |
/** @type {number} */ remoting.HostPlugin.prototype.state; |
/** @type {number} */ remoting.HostPlugin.prototype.STARTING; |
@@ -40,5 +47,8 @@ remoting.HostPlugin.prototype.localize = function(callback) {}; |
/** @type {string} */ remoting.HostPlugin.prototype.client; |
+/** @type {number} True if the daemon is running. */ |
+remoting.HostPlugin.prototype.daemonState; |
+ |
/** @type {function(boolean):void} */ |
remoting.HostPlugin.prototype.onNatTraversalPolicyChanged; |