Home | History | Annotate | Download | only in remoting

Lines Matching refs:SetupFlowStep

21 // SetupFlowStep represents a single step for SetupFlow, e.g. login or
24 class SetupFlowStep {
28 SetupFlowStep();
29 virtual ~SetupFlowStep();
43 // Returns SetupFlowStep object that corresponds to the next
45 virtual SetupFlowStep* GetNextStep() = 0;
48 DISALLOW_COPY_AND_ASSIGN(SetupFlowStep);
52 // SetupFlowStep implementations.
53 class SetupFlowStepBase : public SetupFlowStep {
58 // SetupFlowStep implementation.
60 virtual SetupFlowStep* GetNextStep();
70 void FinishStep(SetupFlowStep* next_step);
82 SetupFlowStep* next_step_;
94 // SetupFlowStep implementation.
120 // SetupFlowStep implementation.
164 // SetupFlowStep::HandleMessage().
178 SetupFlowStep* first_step);
213 scoped_ptr<SetupFlowStep> current_step_;