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 15487e10e689996b8544b72d69166f14d6afc25c..64ddc93e2fd67f0e28537916652296fb10e2ce6a 100644 |
--- a/chrome/browser/ui/views/notifications/balloon_view.cc |
+++ b/chrome/browser/ui/views/notifications/balloon_view.cc |
@@ -491,8 +491,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->FillRectInt(kControlBarSeparatorLineColor, |
- kLeftMargin, 1 + GetShelfHeight(), line_width, 1); |
+ canvas->FillRect(kControlBarSeparatorLineColor, |
+ gfx::Rect(kLeftMargin, 1 + GetShelfHeight(), line_width, 1)); |
View::OnPaint(canvas); |
OnPaintBorder(canvas); |