| Index: remoting/webapp/host_plugin_proto.js
|
| diff --git a/remoting/webapp/host_plugin_proto.js b/remoting/webapp/host_plugin_proto.js
|
| index da1697f8809c3614ec3ebf86b00b14f04bcb222f..f8459659d241d120a5d3e9c20318afaa1a6efc1f 100644
|
| --- a/remoting/webapp/host_plugin_proto.js
|
| +++ b/remoting/webapp/host_plugin_proto.js
|
| @@ -63,11 +63,17 @@ remoting.HostPlugin.prototype.getDaemonConfig = function(callback) {};
|
| * @return {void} Nothing. */
|
| remoting.HostPlugin.prototype.getDaemonVersion = function(callback) {};
|
|
|
| +/** @param {function(boolean, boolean, boolean):void} callback Callback to be
|
| + * called with the consent.
|
| + * @return {void} Nothing. */
|
| +remoting.HostPlugin.prototype.getUsageStatsConsent = function(callback) {};
|
| +
|
| /** @param {string} config Host configuration.
|
| * @param {function(remoting.HostController.AsyncResult):void} callback
|
| * Callback to be called when finished.
|
| * @return {void} Nothing. */
|
| -remoting.HostPlugin.prototype.startDaemon = function(config, callback) {};
|
| +remoting.HostPlugin.prototype.startDaemon = function(
|
| + config, consent, callback) {};
|
|
|
| /** @param {function(remoting.HostController.AsyncResult):void} callback
|
| * Callback to be called when finished.
|
|
|