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

Unified Diff: remoting/webapp/host_setup_dialog.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: Addressed one or two nits. :-) 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
« no previous file with comments | « remoting/webapp/daemon_plugin.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/host_setup_dialog.js
diff --git a/remoting/webapp/host_setup_dialog.js b/remoting/webapp/host_setup_dialog.js
index 241c384a8457a27f149c7980e3e509d9e02beb25..1dcb1742bb6a6efde5e313660d503568b6039b77 100644
--- a/remoting/webapp/host_setup_dialog.js
+++ b/remoting/webapp/host_setup_dialog.js
@@ -315,8 +315,10 @@ remoting.HostSetupDialog.prototype.pollDaemonState_ = function() {
var state = this.daemon_.state();
var retry = false; // Set to true if we haven't finished yet.
switch (state) {
- case remoting.DaemonPlugin.State.STOPPED:
case remoting.DaemonPlugin.State.NOT_INSTALLED:
+ case remoting.DaemonPlugin.State.INSTALLED:
+ case remoting.DaemonPlugin.State.STOPPED:
+ case remoting.DaemonPlugin.State.STARTING:
retry = true;
break;
case remoting.DaemonPlugin.State.STARTED:
« no previous file with comments | « remoting/webapp/daemon_plugin.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698