| Index: chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/profile_info_handler.cc b/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| index 2acd3c5944ae336f3c84a46018cea0d340921efd..0532d3da251f4d0d6aefde1605593eafc5e84b80 100644
|
| --- a/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| @@ -118,7 +118,7 @@ void ProfileInfoHandler::HandleGetProfileManagesSupervisedUsers(
|
| CHECK(args->Get(0, &callback_id));
|
|
|
| ResolveJavascriptCallback(
|
| - *callback_id, base::FundamentalValue(IsProfileManagingSupervisedUsers()));
|
| + *callback_id, base::Value(IsProfileManagingSupervisedUsers()));
|
| }
|
|
|
| void ProfileInfoHandler::PushProfileInfo() {
|
| @@ -131,7 +131,7 @@ void ProfileInfoHandler::PushProfileManagesSupervisedUsersStatus() {
|
| CallJavascriptFunction(
|
| "cr.webUIListenerCallback",
|
| base::StringValue(kProfileManagesSupervisedUsersChangedEventName),
|
| - base::FundamentalValue(IsProfileManagingSupervisedUsers()));
|
| + base::Value(IsProfileManagingSupervisedUsers()));
|
| }
|
|
|
| std::unique_ptr<base::DictionaryValue>
|
|
|