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. */ |