| Index: ui/message_center/message_view_factory.cc
|
| diff --git a/ui/message_center/message_view_factory.cc b/ui/message_center/message_view_factory.cc
|
| index 00c35d40b264a998a9c36ff0a868b498d2d5d1c8..903dac9e6a9e61b165d3120a1eab084cc30408ef 100644
|
| --- a/ui/message_center/message_view_factory.cc
|
| +++ b/ui/message_center/message_view_factory.cc
|
| @@ -7,8 +7,8 @@
|
| #include "ui/message_center/base_format_view.h"
|
| #include "ui/message_center/message_simple_view.h"
|
| #include "ui/message_center/message_view.h"
|
| -#include "ui/message_center/message_view_multiple.h"
|
| #include "ui/message_center/notification_list.h"
|
| +#include "ui/message_center/notification_view.h"
|
| #include "ui/notifications/notification_types.h"
|
|
|
| namespace message_center {
|
| @@ -21,7 +21,7 @@ MessageView* MessageViewFactory::ViewForNotification(
|
| case ui::notifications::NOTIFICATION_TYPE_BASE_FORMAT:
|
| return new BaseFormatView(list_delegate, notification);
|
| case ui::notifications::NOTIFICATION_TYPE_MULTIPLE:
|
| - return new MessageViewMultiple(list_delegate, notification);
|
| + return new NotificationView(list_delegate, notification);
|
| case ui::notifications::NOTIFICATION_TYPE_SIMPLE:
|
| return new MessageSimpleView(list_delegate, notification);
|
|
|
|
|