Commit 593ae88a authored by dewittj@chromium.org's avatar dewittj@chromium.org

Add notification title back to ChromeOS.

Fixes regression introduced by r276036 that removed the title from
the notification center on ChromeOS.

BUG=350449

Review URL: https://codereview.chromium.org/335413005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277870 0039d316-1c4b-4281-b951-d872f2087c98
parent be9c9ecf
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
#include "ui/message_center/views/message_center_bubble.h" #include "ui/message_center/views/message_center_bubble.h"
#include "grit/ui_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/message_center_style.h" #include "ui/message_center/message_center_style.h"
#include "ui/message_center/views/message_center_view.h" #include "ui/message_center/views/message_center_view.h"
#include "ui/views/layout/fill_layout.h" #include "ui/views/layout/fill_layout.h"
...@@ -62,7 +64,8 @@ MessageCenterBubble::MessageCenterBubble(MessageCenter* message_center, ...@@ -62,7 +64,8 @@ MessageCenterBubble::MessageCenterBubble(MessageCenter* message_center,
: MessageBubbleBase(message_center, tray), : MessageBubbleBase(message_center, tray),
message_center_view_(NULL), message_center_view_(NULL),
initially_settings_visible_(false), initially_settings_visible_(false),
first_item_has_no_margin_(first_item_has_no_margin) { first_item_has_no_margin_(first_item_has_no_margin),
title_(l10n_util::GetStringUTF16(IDS_MESSAGE_CENTER_FOOTER_TITLE)) {
} }
MessageCenterBubble::~MessageCenterBubble() { MessageCenterBubble::~MessageCenterBubble() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment