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_VIEW_MULTIPLE_H_ | |
6 #define UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_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 // An early version of the multiple message notification view. | |
14 // | |
15 // TODO: Rename MessageCenter and MessageView* to NotificationCenter | |
miket_OOO
2012/11/15 18:35:32
The standard TODO format is TODO(dharcourt)
This
dharcourt
2012/11/16 02:37:00
Done.
| |
16 // and NotificationView*? | |
17 class MessageViewMultiple : public MessageView { | |
18 public: | |
19 MessageViewMultiple(NotificationList::Delegate* list_delegate, | |
20 const NotificationList::Notification& notification); | |
21 virtual ~MessageViewMultiple(); | |
22 | |
23 // MessageView | |
24 virtual void SetUpView() OVERRIDE; | |
25 | |
26 protected: | |
27 MessageViewMultiple(); | |
28 | |
29 DISALLOW_COPY_AND_ASSIGN(MessageViewMultiple); | |
30 | |
31 private: | |
32 struct NotificationItem; // To be moved later to the Notification class. | |
miket_OOO
2012/11/15 18:35:32
Always two spaces before an inline comment delimit
dharcourt
2012/11/16 02:37:00
Done. But then this line disappeared as the TODO w
| |
33 }; | |
34 | |
35 } // namespace message_center | |
36 | |
37 #endif // UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ | |
OLD | NEW |