| Index: chrome/browser/ui/webui/ntp/new_tab_sync_setup_handler.cc
|
| diff --git a/chrome/browser/ui/webui/ntp/new_tab_sync_setup_handler.cc b/chrome/browser/ui/webui/ntp/new_tab_sync_setup_handler.cc
|
| index 90f985d4341314b2b4c6a23a0b4d8942f30fc85f..a696b681c380ce9470d3a5bc1150cc71fe5a9a52 100644
|
| --- a/chrome/browser/ui/webui/ntp/new_tab_sync_setup_handler.cc
|
| +++ b/chrome/browser/ui/webui/ntp/new_tab_sync_setup_handler.cc
|
| @@ -156,10 +156,10 @@ void NewTabSyncSetupHandler::UpdateLogin() {
|
| // If the user isn't signed in then make the login text clickable so that
|
| // users can click on it to expand the sync promo. Otherwise, if the user
|
| // has multiple profiles then clicking on it should show the profiles menu.
|
| - base::FundamentalValue is_clickable_value(
|
| + base::BooleanValue is_clickable_value(
|
| username.empty() || cache.GetNumberOfProfiles() > 1);
|
|
|
| - base::FundamentalValue is_signed_in_value(!username.empty());
|
| + base::BooleanValue is_signed_in_value(!username.empty());
|
| web_ui_->CallJavascriptFunction("new_tab.NewTabSyncPromo.updateLogin",
|
| status_msg_value, icon_url_value,
|
| is_signed_in_value, is_clickable_value);
|
|
|