| Index: chrome/browser/ui/views/frame/app_panel_browser_frame_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/app_panel_browser_frame_view.cc b/chrome/browser/ui/views/frame/app_panel_browser_frame_view.cc
|
| index d46e92d0e8f956b8c6c0e0632f3891de53743237..16ba0c078323f58a7a1f98069557ac8945b1d10d 100644
|
| --- a/chrome/browser/ui/views/frame/app_panel_browser_frame_view.cc
|
| +++ b/chrome/browser/ui/views/frame/app_panel_browser_frame_view.cc
|
| @@ -340,18 +340,22 @@ void AppPanelBrowserFrameView::PaintRestoredFrameBorder(gfx::Canvas* canvas) {
|
|
|
| // Fill with the frame color first so we have a constant background for
|
| // areas not covered by the theme image.
|
| - canvas->FillRectInt(frame_color, 0, 0, width(), theme_frame->height());
|
| + canvas->FillRect(frame_color,
|
| + gfx::Rect(0, 0, width(), theme_frame->height()));
|
| // Now fill down the sides.
|
| - canvas->FillRectInt(frame_color, 0, theme_frame->height(), left_edge->width(),
|
| - height() - theme_frame->height());
|
| - canvas->FillRectInt(frame_color, width() - right_edge->width(),
|
| - theme_frame->height(), right_edge->width(),
|
| - height() - theme_frame->height());
|
| + canvas->FillRect(frame_color,
|
| + gfx::Rect(0, theme_frame->height(), left_edge->width(),
|
| + height() - theme_frame->height()));
|
| + canvas->FillRect(frame_color,
|
| + gfx::Rect(width() - right_edge->width(),
|
| + theme_frame->height(), right_edge->width(),
|
| + height() - theme_frame->height()));
|
| // Now fill the bottom area.
|
| - canvas->FillRectInt(frame_color, left_edge->width(),
|
| - height() - bottom_edge->height(),
|
| - width() - left_edge->width() - right_edge->width(),
|
| - bottom_edge->height());
|
| + canvas->FillRect(frame_color,
|
| + gfx::Rect(left_edge->width(),
|
| + height() - bottom_edge->height(),
|
| + width() - left_edge->width() - right_edge->width(),
|
| + bottom_edge->height()));
|
|
|
| // Draw the theme frame.
|
| canvas->TileImageInt(*theme_frame, 0, 0, width(), theme_frame->height());
|
|
|