Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4348)

Unified Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
index 87845e300a29832f383e47e051f6576b8f55c0f1..7bc47805b819516d95a16382a7a02281d4bad58b 100644
--- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
+++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
@@ -182,10 +182,10 @@ void SigninScreenHandler::ShowError(int login_attempts,
const std::string& error_text,
const std::string& help_link_text,
HelpAppLauncher::HelpTopic help_topic_id) {
- base::FundamentalValue login_attempts_value(login_attempts);
+ base::NumberValue login_attempts_value(login_attempts);
base::StringValue error_message(error_text);
base::StringValue help_link(help_link_text);
- base::FundamentalValue help_id(static_cast<int>(help_topic_id));
+ base::NumberValue help_id(static_cast<int>(help_topic_id));
web_ui_->CallJavascriptFunction("cr.ui.Oobe.showSignInError",
login_attempts_value,
error_message,
@@ -343,7 +343,7 @@ void SigninScreenHandler::SendUserList(bool animated) {
}
// Call the Javascript callback
- base::FundamentalValue animated_value(animated);
+ base::BooleanValue animated_value(animated);
web_ui_->CallJavascriptFunction("login.AccountPickerScreen.loadUsers",
users_list, animated_value);
}

Powered by Google App Engine
This is Rietveld 408576698