Chromium Code Reviews| 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_MESSAGE_SIMPLE_VIEW_H_ | |
| 6 #define UI_MESSAGE_CENTER_MESSAGE_SIMPLE_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 // A simple view for a notification entry (icon + message + buttons). | |
| 14 class MessageSimpleView : public MessageView { | |
| 15 public: | |
| 16 MessageSimpleView(NotificationList::Delegate* list_delegate, | |
| 17 const NotificationList::Notification& notification); | |
| 18 virtual ~MessageSimpleView(); | |
| 19 | |
| 20 // MessageView | |
| 21 virtual void SetUpView() OVERRIDE; | |
| 22 | |
| 23 protected: | |
| 24 MessageSimpleView(); | |
| 25 | |
| 26 DISALLOW_COPY_AND_ASSIGN(MessageSimpleView); | |
| 27 }; | |
| 28 | |
| 29 } // namespace message_center | |
| 30 | |
| 31 #endif // UI_MESSAGE_CENTER_MESSAGE_SIMPLE_VIEW_H_ | |
|
dharcourt
2013/01/19 03:06:13
MessageSimpleView replaced by NotificationView.
| |
| OLD | NEW |