| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/message_center/views/custom_notification_content_view_delegate.h" |
| 6 |
| 7 #include "ui/views/view.h" |
| 8 |
| 9 namespace message_center { |
| 10 |
| 11 CustomContent::CustomContent( |
| 12 std::unique_ptr<views::View> view, |
| 13 std::unique_ptr<CustomNotificationContentViewDelegate> delegate) |
| 14 : view(std::move(view)), delegate(std::move(delegate)) {} |
| 15 |
| 16 CustomContent::~CustomContent() {} |
| 17 |
| 18 } // namespace message_center |
| OLD | NEW |