Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: remoting/webapp/host_plugin_proto.js

Issue 9316078: Added daemon process NPAPI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unused headers. Fixed Windows and Mac builds. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« remoting/remoting.gyp ('K') | « remoting/remoting.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« remoting/remoting.gyp ('K') | « remoting/remoting.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698