diff options
author | bruthig <bruthig@chromium.org> | 2014-08-27 07:32:26 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-27 14:33:56 +0000 |
commit | 8bbc59b53df13d6e88cb4f97ced210324b745356 (patch) | |
tree | 985a0ae2386d2e525d208f1d8c865efad5a43cd7 /ash | |
parent | 38b5bea9b2ce6c9ef92956cf22135d241978be4f (diff) | |
download | chromium_src-8bbc59b53df13d6e88cb4f97ced210324b745356.zip chromium_src-8bbc59b53df13d6e88cb4f97ced210324b745356.tar.gz chromium_src-8bbc59b53df13d6e88cb4f97ced210324b745356.tar.bz2 |
Fixed BubbleBorder sizing problems & added unit tests.
BUG=395622
TEST=automated
Review URL: https://codereview.chromium.org/454173002
Cr-Commit-Position: refs/heads/master@{#292145}
Diffstat (limited to 'ash')
-rw-r--r-- | ash/system/web_notification/web_notification_tray.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc index 13bf02b..27e73b7 100644 --- a/ash/system/web_notification/web_notification_tray.cc +++ b/ash/system/web_notification/web_notification_tray.cc @@ -91,8 +91,8 @@ class WebNotificationBubbleWrapper { } views::TrayBubbleView* bubble_view = views::TrayBubbleView::Create( tray->GetBubbleWindowContainer(), anchor, tray, &init_params); - bubble_view->SetArrowPaintType(views::BubbleBorder::PAINT_NONE); bubble_wrapper_.reset(new TrayBubbleWrapper(tray, bubble_view)); + bubble_view->SetArrowPaintType(views::BubbleBorder::PAINT_NONE); bubble->InitializeContents(bubble_view); } |