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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ 5 #ifndef UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_
6 #define UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ 6 #define UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_
7 7
8 #include "ui/message_center/message_view.h" 8 #include "ui/message_center/message_view.h"
9 #include "ui/message_center/notification_list.h" 9 #include "ui/message_center/notification_list.h"
10 10
11 namespace message_center { 11 namespace message_center {
12 12
13 // View that displays multiple-item notifications. 13 // View that displays multiple-item notifications.
14 // 14 //
15 // TODO(dharcourt): Rename MessageCenter and MessageView* to NotificationCenter 15 // TODO(dharcourt): Rename MessageCenter and MessageView* to NotificationCenter
Jun Mukai 2012/12/20 18:21:21 can you update this TODO btw?
dharcourt 2012/12/20 20:38:30 Done.
16 // and NotificationView*? 16 // and NotificationView*?
17 class MessageViewMultiple : public MessageView { 17 class NotificationView : public MessageView {
18 public: 18 public:
19 MessageViewMultiple(NotificationList::Delegate* list_delegate, 19 NotificationView(NotificationList::Delegate* list_delegate,
20 const NotificationList::Notification& notification); 20 const NotificationList::Notification& notification);
21 virtual ~MessageViewMultiple(); 21 virtual ~NotificationView();
22 22
23 // Overridden from MessageView. 23 // Overridden from MessageView.
24 virtual void SetUpView() OVERRIDE; 24 virtual void SetUpView() OVERRIDE;
25 25
26 private: 26 private:
27 DISALLOW_COPY_AND_ASSIGN(MessageViewMultiple); 27 DISALLOW_COPY_AND_ASSIGN(NotificationView);
28 }; 28 };
29 29
30 } // namespace message_center 30 } // namespace message_center
31 31
32 #endif // UI_MESSAGE_CENTER_MESSAGE_VIEW_MULTIPLE_H_ 32 #endif // UI_MESSAGE_CENTER_NOTIFICATION_VIEW_H_
OLDNEW
« 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