Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: ui/message_center/notification_view.h

Issue 11647031: Renamed MessageViewMultiple to NotificationView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/message_center/message_view_multiple.cc ('k') | ui/message_center/notification_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/notification_view.h
diff --git a/ui/message_center/notification_view.h b/ui/message_center/notification_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..57494951621eb6df5a13ad3fbc9a2f46b140453e
--- /dev/null
+++ b/ui/message_center/notification_view.h
@@ -0,0 +1,31 @@
+// 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_NOTIFICATION_VIEW_H_
+#define UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_
+
+#include "ui/message_center/message_view.h"
+#include "ui/message_center/notification_list.h"
+
+namespace message_center {
+
+// View that displays multiple-item notifications, and in the future will
+// display all types of notification (simple/web, basic/base, image, and
+// multiple-item/inbox).
+class NotificationView : public MessageView {
+ public:
+ NotificationView(NotificationList::Delegate* list_delegate,
+ const NotificationList::Notification& notification);
+ virtual ~NotificationView();
+
+ // Overridden from MessageView.
+ virtual void SetUpView() OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(NotificationView);
+};
+
+} // namespace message_center
+
+#endif // UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_
« no previous file with comments | « ui/message_center/message_view_multiple.cc ('k') | ui/message_center/notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698