| Index: chrome/browser/ui/webui/options/core_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/core_options_handler.cc b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| index f8431556fbf13f54e037604f4779b4703d39130b..522a9c553d7b1d810f0c05c8a018b40f99306f96 100644
|
| --- a/chrome/browser/ui/webui/options/core_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| @@ -558,7 +558,7 @@ void CoreOptionsHandler::HandleSetPref(const base::ListValue* args,
|
| return;
|
| }
|
| int int_value = static_cast<int>(double_value);
|
| - temp_value.reset(new base::FundamentalValue(int_value));
|
| + temp_value.reset(new base::Value(int_value));
|
| value = temp_value.get();
|
| break;
|
| }
|
| @@ -646,14 +646,14 @@ void CoreOptionsHandler::HandleDisableExtension(const base::ListValue* args) {
|
| }
|
|
|
| void CoreOptionsHandler::UpdateClearPluginLSOData() {
|
| - base::FundamentalValue enabled(
|
| + base::Value enabled(
|
| plugin_status_pref_setter_.IsClearPluginLSODataEnabled());
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| "options.OptionsPage.setClearPluginLSODataEnabled", enabled);
|
| }
|
|
|
| void CoreOptionsHandler::UpdatePepperFlashSettingsEnabled() {
|
| - base::FundamentalValue enabled(
|
| + base::Value enabled(
|
| plugin_status_pref_setter_.IsPepperFlashSettingsEnabled());
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| "options.OptionsPage.setPepperFlashSettingsEnabled", enabled);
|
|
|