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

Unified Diff: remoting/webapp/daemon_plugin.js

Issue 9953002: The me2me host is now configurable from the web UI on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving the Windows service name to a common location. Created 8 years, 9 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
Index: remoting/webapp/daemon_plugin.js
diff --git a/remoting/webapp/daemon_plugin.js b/remoting/webapp/daemon_plugin.js
index 2f16fdad5b4df4e8f021b26cffdc4d173166f789..afb6efce10f4b970a37164abaefdace46cb490c8 100644
--- a/remoting/webapp/daemon_plugin.js
+++ b/remoting/webapp/daemon_plugin.js
@@ -22,10 +22,13 @@ remoting.DaemonPlugin = function() {
remoting.DaemonPlugin.State = {
NOT_IMPLEMENTED: -1,
NOT_INSTALLED: 0,
- STOPPED: 1,
- STARTED: 2,
- START_FAILED: 3,
- UNKNOWN: 4
+ INSTALLING: 1,
+ STOPPED: 2,
+ STARTING: 3,
+ STARTED: 4,
+ STOPPING: 5,
+ START_FAILED: 6,
+ UNKNOWN: 7
};
/** @return {remoting.DaemonPlugin.State} The current state of the daemon. */

Powered by Google App Engine
This is Rietveld 408576698