Lines Matching full:args
60 DictionaryValue args;
62 SyncSetupFlow::GetArgsForGaiaLogin(service, &args);
64 SyncSetupFlow::GetArgsForConfigure(service, &args);
66 SyncSetupFlow::GetArgsForEnterPassphrase(false, false, &args);
68 args.SetString("iframeToShow", "firstpassphrase");
71 base::JSONWriter::Write(&args, false, &json_args);
83 DictionaryValue* args) {
84 args->SetString("iframeToShow", "login");
87 args->SetString("user", service->last_attempted_user_email());
88 args->SetInteger("error", error.state());
89 args->SetBoolean("editable_user", true);
96 args->SetString("user", user);
97 args->SetInteger("error", 0);
98 args->SetBoolean("editable_user", user.empty());
101 args->SetString("captchaUrl", error.captcha().image_url.spec());
106 DictionaryValue* args) {
107 args->SetString("iframeToShow", "configure");
110 args->SetBoolean("syncEverything", false);
112 args->SetBoolean("keepEverythingSynced",
119 args->SetBoolean("passwordsRegistered",
121 args->SetBoolean("autofillRegistered",
123 args->SetBoolean("extensionsRegistered",
125 args->SetBoolean("typedUrlsRegistered",
127 args->SetBoolean("appsRegistered",
129 args->SetBoolean("sessionsRegistered",
131 args->SetBoolean("syncBookmarks",
133 args->SetBoolean("syncPreferences",
135 args->SetBoolean("syncThemes",
137 args->SetBoolean("syncPasswords",
139 args->SetBoolean("syncAutofill",
141 args->SetBoolean("syncExtensions",
143 args->SetBoolean("syncSessions",
145 args->SetBoolean("syncTypedUrls",
147 args->SetBoolean("syncApps",
151 args->SetBoolean("usePassphrase", service->IsUsingSecondaryPassphrase());
158 DictionaryValue* args) {
159 args->SetString("iframeToShow", "passphrase");
160 args->SetBoolean("passphrase_creation_rejected",
162 args->SetBoolean("passphrase_setting_rejected",
282 const std::string& args,
286 dialog_start_args_(args),
338 DictionaryValue args;
339 SyncSetupFlow::GetArgsForGaiaLogin(service_, &args);
340 flow_handler_->ShowGaiaLogin(args);
351 DictionaryValue args;
352 SyncSetupFlow::GetArgsForConfigure(service_, &args);
353 args.SetBoolean("syncEverything", true);
354 flow_handler_->ShowConfigure(args);
358 DictionaryValue args;
359 SyncSetupFlow::GetArgsForConfigure(service_, &args);
360 flow_handler_->ShowConfigure(args);
364 DictionaryValue args;
368 &args);
369 flow_handler_->ShowPassphraseEntry(args);
373 DictionaryValue args;
374 args.SetString("iframeToShow", "firstpassphrase");
375 flow_handler_->ShowFirstPassphrase(args);
379 DictionaryValue args;
380 SyncSetupFlow::GetArgsForConfigure(service_, &args);
381 args.SetBoolean("was_aborted", true);
382 flow_handler_->ShowConfigure(args);
392 DictionaryValue args;
393 SyncSetupFlow::GetArgsForGaiaLogin(service_, &args);
394 args.SetInteger("error", GoogleServiceAuthError::CONNECTION_FAILED);
395 flow_handler_->ShowGaiaLogin(args);