OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 #ifndef UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_ |
| 6 #define UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_ |
| 7 |
| 8 #include "ui/message_center/message_view.h" |
| 9 #include "ui/message_center/notification_list.h" |
| 10 |
| 11 namespace message_center { |
| 12 |
| 13 // View that displays multiple-item notifications, and in the future will |
| 14 // display all types of notification (simple/web, basic/base, image, and |
| 15 // multiple-item/inbox). |
| 16 class NotificationView : public MessageView { |
| 17 public: |
| 18 NotificationView(NotificationList::Delegate* list_delegate, |
| 19 const NotificationList::Notification& notification); |
| 20 virtual ~NotificationView(); |
| 21 |
| 22 // Overridden from MessageView. |
| 23 virtual void SetUpView() OVERRIDE; |
| 24 |
| 25 private: |
| 26 DISALLOW_COPY_AND_ASSIGN(NotificationView); |
| 27 }; |
| 28 |
| 29 } // namespace message_center |
| 30 |
| 31 #endif // UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_ |
OLD | NEW |