| Index: chrome/browser/ui/webui/settings/chromeos/easy_unlock_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/chromeos/easy_unlock_settings_handler.cc b/chrome/browser/ui/webui/settings/chromeos/easy_unlock_settings_handler.cc
|
| index 59ef95cee3fe1c30a53a1f875014f285a1e552d8..67d893e79cd5d152520b9ce1c823ba0e76787860 100644
|
| --- a/chrome/browser/ui/webui/settings/chromeos/easy_unlock_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/chromeos/easy_unlock_settings_handler.cc
|
| @@ -95,7 +95,7 @@ void EasyUnlockSettingsHandler::SendEnabledStatus() {
|
| CallJavascriptFunction(
|
| "cr.webUIListenerCallback",
|
| base::StringValue("easy-unlock-enabled-status"),
|
| - base::FundamentalValue(EasyUnlockService::Get(profile_)->IsEnabled()));
|
| + base::Value(EasyUnlockService::Get(profile_)->IsEnabled()));
|
| }
|
|
|
| std::string EasyUnlockSettingsHandler::GetTurnOffFlowStatus() {
|
| @@ -133,7 +133,7 @@ void EasyUnlockSettingsHandler::HandleGetEnabledStatus(
|
| CHECK(args->Get(0, &callback_id));
|
| ResolveJavascriptCallback(
|
| *callback_id,
|
| - base::FundamentalValue(EasyUnlockService::Get(profile_)->IsEnabled()));
|
| + base::Value(EasyUnlockService::Get(profile_)->IsEnabled()));
|
| }
|
|
|
| void EasyUnlockSettingsHandler::HandleStartTurnOnFlow(
|
|
|