diff options
author | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-07 00:40:16 +0000 |
---|---|---|
committer | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-07 00:40:16 +0000 |
commit | f77f3d5bf2d6f098b8c692848c91c74587285d37 (patch) | |
tree | 12d473f902dfbcc567938943b054e7758e5a6bed | |
parent | 8252ade23a82f7ce248311acfc1cd42d6ff1f824 (diff) | |
download | chromium_src-f77f3d5bf2d6f098b8c692848c91c74587285d37.zip chromium_src-f77f3d5bf2d6f098b8c692848c91c74587285d37.tar.gz chromium_src-f77f3d5bf2d6f098b8c692848c91c74587285d37.tar.bz2 |
Removes blue background color for notification icon too.
Same reason as crrev.com/198502, for M28. Now no one is using
the blue background color in tray_background_view.cc, but let's
keep it to minimize the change and we'll revive it soon in M29.
BUG=238516
R=stevenjb@chromium.org
Review URL: https://codereview.chromium.org/15021005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198579 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ash/system/web_notification/web_notification_tray.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc index 2207ba9..9c10822 100644 --- a/ash/system/web_notification/web_notification_tray.cc +++ b/ash/system/web_notification/web_notification_tray.cc @@ -236,7 +236,6 @@ bool WebNotificationTray::ShowMessageCenter() { message_center_bubble->SetMaxHeight(max_height); message_center_bubble_.reset( new internal::WebNotificationBubbleWrapper(this, message_center_bubble)); - SetBubbleVisible(true); status_area_widget()->SetHideSystemNotifications(true); GetShelfLayoutManager()->UpdateAutoHideState(); @@ -249,7 +248,6 @@ void WebNotificationTray::HideMessageCenter() { return; message_center_bubble_.reset(); should_block_shelf_auto_hide_ = false; - SetBubbleVisible(false); show_message_center_on_unlock_ = false; status_area_widget()->SetHideSystemNotifications(false); GetShelfLayoutManager()->UpdateAutoHideState(); |