| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/message_center/notification_delegate.h" | 5 #include "ui/message_center/notification_delegate.h" |
| 6 | 6 |
| 7 #include "ui/views/view.h" | 7 #include "ui/views/view.h" |
| 8 | 8 |
| 9 namespace message_center { | 9 namespace message_center { |
| 10 | 10 |
| 11 std::unique_ptr<views::View> NotificationDelegate::CreateCustomContent() { | 11 std::tuple< |
| 12 return std::unique_ptr<views::View>(); | 12 std::unique_ptr<views::View>, |
| 13 std::unique_ptr<message_center::CustomNotificationContentViewDelegate>> |
| 14 NotificationDelegate::CreateCustomContent() { |
| 15 return std::make_tuple(nullptr, nullptr); |
| 13 } | 16 } |
| 14 | 17 |
| 15 } // namespace message_center | 18 } // namespace message_center |
| OLD | NEW |