| Index: chrome/browser/extensions/api/notifications/notifications_api.cc
|
| diff --git a/chrome/browser/extensions/api/notifications/notifications_api.cc b/chrome/browser/extensions/api/notifications/notifications_api.cc
|
| index 44fc3e2126eaf6e632b084c2c04b8a913279def0..060cfdca51845fd0738754d99ee17fbfe292c701 100644
|
| --- a/chrome/browser/extensions/api/notifications/notifications_api.cc
|
| +++ b/chrome/browser/extensions/api/notifications/notifications_api.cc
|
| @@ -673,7 +673,7 @@ bool NotificationsUpdateFunction::RunNotificationsApi() {
|
| CreateScopedIdentifier(extension_->id(), params_->notification_id),
|
| NotificationUIManager::GetProfileID(GetProfile()));
|
| if (!matched_notification) {
|
| - SetResult(base::MakeUnique<base::FundamentalValue>(false));
|
| + SetResult(base::MakeUnique<base::Value>(false));
|
| SendResponse(true);
|
| return true;
|
| }
|
| @@ -688,7 +688,7 @@ bool NotificationsUpdateFunction::RunNotificationsApi() {
|
| bool could_update_notification = UpdateNotification(
|
| params_->notification_id, ¶ms_->options, ¬ification);
|
| SetResult(
|
| - base::MakeUnique<base::FundamentalValue>(could_update_notification));
|
| + base::MakeUnique<base::Value>(could_update_notification));
|
| if (!could_update_notification)
|
| return false;
|
|
|
| @@ -712,7 +712,7 @@ bool NotificationsClearFunction::RunNotificationsApi() {
|
| CreateScopedIdentifier(extension_->id(), params_->notification_id),
|
| NotificationUIManager::GetProfileID(GetProfile()));
|
|
|
| - SetResult(base::MakeUnique<base::FundamentalValue>(cancel_result));
|
| + SetResult(base::MakeUnique<base::Value>(cancel_result));
|
| SendResponse(true);
|
|
|
| return true;
|
|
|