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..5f23ba90a883f9632031e0ac372efe64fe36eaf9 100644 |
--- a/remoting/webapp/host_plugin_proto.js |
+++ b/remoting/webapp/host_plugin_proto.js |
@@ -25,6 +25,16 @@ remoting.HostPlugin.prototype.disconnect = function() {}; |
* @return {void} Nothing. */ |
remoting.HostPlugin.prototype.localize = function(callback) {}; |
+/** @param {string} pin The new PIN. |
+ * @return {boolean} True if the PIN was changed successfully. */ |
+remoting.HostPlugin.prototype.setDaemonPin = function(pin) {}; |
+ |
+/** @return {boolean} True if successful (poll daemonState for completion). */ |
+remoting.HostPlugin.prototype.startDaemon = function() {}; |
+ |
+/** @return {void} Nothing. */ |
+remoting.HostPlugin.prototype.stopDaemon = function() {}; |
+ |
/** @type {number} */ remoting.HostPlugin.prototype.state; |
/** @type {number} */ remoting.HostPlugin.prototype.STARTING; |
@@ -40,5 +50,8 @@ remoting.HostPlugin.prototype.localize = function(callback) {}; |
/** @type {string} */ remoting.HostPlugin.prototype.client; |
+/** @type {number} The install/running state of the daemon process. */ |
+remoting.HostPlugin.prototype.daemonState; |
+ |
/** @type {function(boolean):void} */ |
remoting.HostPlugin.prototype.onNatTraversalPolicyChanged; |