| Index: ui/message_center/notification_delegate_views.cc
|
| diff --git a/ui/message_center/notification_delegate_views.cc b/ui/message_center/notification_delegate_views.cc
|
| index 6f993d2c640f5d42c4f2eb0f94cc03cf8ca95bc1..eb6e8a75f6cf200b2bb9c3babd75a5323926e9c1 100644
|
| --- a/ui/message_center/notification_delegate_views.cc
|
| +++ b/ui/message_center/notification_delegate_views.cc
|
| @@ -8,8 +8,11 @@
|
|
|
| namespace message_center {
|
|
|
| -std::unique_ptr<views::View> NotificationDelegate::CreateCustomContent() {
|
| - return std::unique_ptr<views::View>();
|
| +std::tuple<
|
| + std::unique_ptr<views::View>,
|
| + std::unique_ptr<message_center::CustomNotificationContentViewDelegate>>
|
| +NotificationDelegate::CreateCustomContent() {
|
| + return std::make_tuple(nullptr, nullptr);
|
| }
|
|
|
| } // namespace message_center
|
|
|