| Index: remoting/webapp/host_setup_dialog.js
|
| diff --git a/remoting/webapp/host_setup_dialog.js b/remoting/webapp/host_setup_dialog.js
|
| index 800770b5af62839f838b78a3e1a83fcb123c4b52..f8c12bf3853001b0d82d2dcb6ab2392237ec80e6 100644
|
| --- a/remoting/webapp/host_setup_dialog.js
|
| +++ b/remoting/webapp/host_setup_dialog.js
|
| @@ -372,7 +372,9 @@ remoting.HostSetupDialog.prototype.installHost_ = function() {
|
| var installed =
|
| state != remoting.HostController.State.NOT_INSTALLED &&
|
| state != remoting.HostController.State.INSTALLING;
|
| - if (installed) {
|
| +
|
| + // On Windows we perform the host installation after showing the pin form.
|
| + if (installed || navigator.platform == 'Win32') {
|
| that.flow_.switchToNextStep();
|
| that.updateState_();
|
| } else {
|
|
|