| Index: chrome/browser/ui/webui/options/personal_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/personal_options_handler.cc b/chrome/browser/ui/webui/options/personal_options_handler.cc
|
| index f273c6b31b34a4526260d663a78a6b672cf48fd3..26fc5797a2f4ef819cce9502f152570ecb91844c 100644
|
| --- a/chrome/browser/ui/webui/options/personal_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/personal_options_handler.cc
|
| @@ -147,13 +147,13 @@ void PersonalOptionsHandler::GetLocalizedValues(
|
| // Sync select control.
|
| ListValue* sync_select_list = new ListValue;
|
| ListValue* datatypes = new ListValue;
|
| - datatypes->Append(Value::CreateBooleanValue(false));
|
| + datatypes->Append(base::FalseValue());
|
| datatypes->Append(
|
| Value::CreateStringValue(
|
| l10n_util::GetStringUTF8(IDS_SYNC_OPTIONS_SELECT_DATATYPES)));
|
| sync_select_list->Append(datatypes);
|
| ListValue* everything = new ListValue;
|
| - everything->Append(Value::CreateBooleanValue(true));
|
| + everything->Append(base::TrueValue());
|
| everything->Append(
|
| Value::CreateStringValue(
|
| l10n_util::GetStringUTF8(IDS_SYNC_OPTIONS_SELECT_EVERYTHING)));
|
|
|