Chromium Code Reviews| Index: ui/message_center/message_view_multiple.h |
| diff --git a/ui/message_center/message_view_multiple.h b/ui/message_center/message_view_multiple.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..234b5ab9fff8f880bfda75db2a9d6a58d37b6619 |
| --- /dev/null |
| +++ b/ui/message_center/message_view_multiple.h |
| @@ -0,0 +1,37 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ |
| +#define UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ |
| + |
| +#include "ui/message_center/message_view.h" |
| +#include "ui/message_center/notification_list.h" |
| + |
| +namespace message_center { |
| + |
| +// An early version of the multiple message notification view. |
| +// |
| +// 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.
|
| +// and NotificationView*? |
| +class MessageViewMultiple : public MessageView { |
| + public: |
| + MessageViewMultiple(NotificationList::Delegate* list_delegate, |
| + const NotificationList::Notification& notification); |
| + virtual ~MessageViewMultiple(); |
| + |
| + // MessageView |
| + virtual void SetUpView() OVERRIDE; |
| + |
| + protected: |
| + MessageViewMultiple(); |
| + |
| + DISALLOW_COPY_AND_ASSIGN(MessageViewMultiple); |
| + |
| + private: |
| + 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
|
| +}; |
| + |
| +} // namespace message_center |
| + |
| +#endif // UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ |