| Index: chrome/browser/ui/views/constrained_window_views.cc
|
| diff --git a/chrome/browser/ui/views/constrained_window_views.cc b/chrome/browser/ui/views/constrained_window_views.cc
|
| index b8774f90ea1742939ea6feba2765a6830cbb3d94..2a8b4cf4f02161896310a42a43844fb8627af376 100644
|
| --- a/chrome/browser/ui/views/constrained_window_views.cc
|
| +++ b/chrome/browser/ui/views/constrained_window_views.cc
|
| @@ -486,8 +486,8 @@ void ConstrainedWindowFrameView::PaintClientEdge(gfx::Canvas* canvas) {
|
| gfx::Rect frame_shadow_bounds(client_edge_bounds);
|
| frame_shadow_bounds.Inset(-kFrameShadowThickness, -kFrameShadowThickness);
|
|
|
| - canvas->FillRect(kContentsBorderShadow, frame_shadow_bounds);
|
| - canvas->FillRect(ResourceBundle::toolbar_color, client_edge_bounds);
|
| + canvas->FillRect(frame_shadow_bounds, kContentsBorderShadow);
|
| + canvas->FillRect(client_edge_bounds, ResourceBundle::toolbar_color);
|
| }
|
|
|
| void ConstrainedWindowFrameView::LayoutWindowControls() {
|
|
|