OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SetupFlowStep
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/remoting/
setup_flow.h
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
[
all
...]
setup_flow.cc
32
SetupFlowStep
::
SetupFlowStep
() { }
33
SetupFlowStep
::~
SetupFlowStep
() { }
49
SetupFlowStep
* SetupFlowStepBase::GetNextStep() {
64
void SetupFlowStepBase::FinishStep(
SetupFlowStep
* next_step) {
123
SetupFlowStep
* first_step)
256
SetupFlowStep
* next_step = current_step_->GetNextStep();
262
new DeleteTask<
SetupFlowStep
>(current_step_.release()));
Completed in 25 milliseconds