| Index: chrome/browser/ui/views/notifications/balloon_view.cc
|
| diff --git a/chrome/browser/ui/views/notifications/balloon_view.cc b/chrome/browser/ui/views/notifications/balloon_view.cc
|
| index d58481d4a2e281b6e9059cf2407e1ccfe8da375f..54a832bf0ea5f3a8660e903d81e66d7dcbd341aa 100644
|
| --- a/chrome/browser/ui/views/notifications/balloon_view.cc
|
| +++ b/chrome/browser/ui/views/notifications/balloon_view.cc
|
| @@ -510,9 +510,8 @@ void BalloonViewImpl::OnPaint(gfx::Canvas* canvas) {
|
|
|
| // Draw a 1-pixel gray line between the content and the menu bar.
|
| int line_width = GetTotalWidth() - kLeftMargin - kRightMargin;
|
| - canvas->FillRect(kControlBarSeparatorLineColor,
|
| - gfx::Rect(kLeftMargin, 1 + GetShelfHeight(), line_width, 1));
|
| -
|
| + canvas->FillRect(gfx::Rect(kLeftMargin, 1 + GetShelfHeight(), line_width, 1),
|
| + kControlBarSeparatorLineColor);
|
| View::OnPaint(canvas);
|
| OnPaintBorder(canvas);
|
| }
|
|
|