Home
last modified time | relevance | path

Searched refs:SetupFlowStep (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/remoting/
Dsetup_flow.h24 class SetupFlowStep {
28 SetupFlowStep();
29 virtual ~SetupFlowStep();
45 virtual SetupFlowStep* GetNextStep() = 0;
48 DISALLOW_COPY_AND_ASSIGN(SetupFlowStep);
53 class SetupFlowStepBase : public SetupFlowStep {
60 virtual SetupFlowStep* GetNextStep();
70 void FinishStep(SetupFlowStep* next_step);
82 SetupFlowStep* next_step_;
178 SetupFlowStep* first_step);
[all …]
Dsetup_flow.cc32 SetupFlowStep::SetupFlowStep() { } in SetupFlowStep() function in remoting::SetupFlowStep
33 SetupFlowStep::~SetupFlowStep() { } in ~SetupFlowStep()
49 SetupFlowStep* SetupFlowStepBase::GetNextStep() { in GetNextStep()
64 void SetupFlowStepBase::FinishStep(SetupFlowStep* next_step) { in FinishStep()
123 SetupFlowStep* first_step) in SetupFlow()
256 SetupFlowStep* next_step = current_step_->GetNextStep(); in OnStepDone()
262 new DeleteTask<SetupFlowStep>(current_step_.release())); in OnStepDone()