Home | History | Annotate | Download | only in remoting

Lines Matching refs:SetupFlow

43 void SetupFlowStepBase::Start(SetupFlow* flow, DoneCallback* done_callback) {
121 SetupFlow::SetupFlow(const std::string& args,
133 SetupFlow::~SetupFlow() { }
136 SetupFlow* SetupFlow::OpenSetupDialog(Profile* profile) {
151 SetupFlow *flow = new SetupFlow(json_args, profile, new SetupFlowLoginStep());
156 GURL SetupFlow::GetDialogContentURL() const {
160 void SetupFlow::GetWebUIMessageHandlers(
163 handlers->push_back(const_cast<SetupFlow*>(this));
166 void SetupFlow::GetDialogSize(gfx::Size* size) const {
180 void SetupFlow::OnDialogClosed(const std::string& json_retval) {
185 std::string SetupFlow::GetDialogArgs() const {
189 void SetupFlow::OnCloseContents(TabContents* source,
193 std::wstring SetupFlow::GetDialogTitle() const {
198 bool SetupFlow::IsDialogModal() const {
202 bool SetupFlow::ShouldShowDialogTitle() const {
206 WebUIMessageHandler* SetupFlow::Attach(WebUI* web_ui) {
212 void SetupFlow::RegisterMessages() {
214 "SubmitAuth", NewCallback(this, &SetupFlow::HandleSubmitAuth));
216 "RemotingSetup", NewCallback(this, &SetupFlow::HandleUIMessage));
219 void SetupFlow::HandleSubmitAuth(const ListValue* args) {
229 void SetupFlow::HandleUIMessage(const ListValue* args) {
251 void SetupFlow::StartCurrentStep() {
252 current_step_->Start(this, NewCallback(this, &SetupFlow::OnStepDone));
255 void SetupFlow::OnStepDone() {