Home | History | Annotate | Download | only in webapp

Lines Matching refs:flow

12  *     steps for the flow.
50 /** @return {remoting.HostSetupFlow.State} Current state of the flow. */
73 // Stop the setup flow if user rejected one of the actions.
212 var flow = [
224 flow.shift();
227 this.startNewFlow_(flow);
263 * Starts new flow with the specified sequence of steps.
277 * flow and start the action corresponding to the current step (if
348 var flow = this.flow_;
352 flow.switchToErrorState(error);
387 var flow = this.flow_;
391 if (flow !== that.flow_ ||
392 flow.getState() != remoting.HostSetupFlow.State.STARTING_HOST) {
401 flow.switchToNextStep();
409 flow.switchToErrorState(error);
422 var flow = this.flow_;
426 if (flow !== that.flow_ ||
427 flow.getState() != remoting.HostSetupFlow.State.UPDATING_PIN) {
436 flow.switchToNextStep();
444 flow.switchToErrorState(error);
449 this.hostController_.updatePin(flow.pin, onPinUpdated, onError);
459 var flow = this.flow_;
463 if (flow !== that.flow_ ||
464 flow.getState() != remoting.HostSetupFlow.State.STOPPING_HOST) {
473 flow.switchToNextStep();
481 flow.switchToErrorState(error);