| Index: chrome/browser/ui/views/frame/glass_browser_frame_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/glass_browser_frame_view.cc b/chrome/browser/ui/views/frame/glass_browser_frame_view.cc
|
| index 61c9180850178aae9b2d97d33b0b8d8e96bd4e82..85fd098250ebbdcb0e860d321d5feee78745fcda 100644
|
| --- a/chrome/browser/ui/views/frame/glass_browser_frame_view.cc
|
| +++ b/chrome/browser/ui/views/frame/glass_browser_frame_view.cc
|
| @@ -682,8 +682,8 @@ void GlassBrowserFrameView::PaintToolbarBackground(gfx::Canvas* canvas) const {
|
| // Top stroke.
|
| gfx::Rect separator_rect(x, y, w, 0);
|
| gfx::ScopedCanvas scoped_canvas(canvas);
|
| - gfx::Rect tabstrip_bounds(GetBoundsForTabStrip(browser_view()->tabstrip()));
|
| - tabstrip_bounds.set_x(GetMirroredXForRect(tabstrip_bounds));
|
| + gfx::Rect tabstrip_bounds =
|
| + GetMirroredRect(GetBoundsForTabStrip(browser_view()->tabstrip()));
|
| canvas->sk_canvas()->clipRect(gfx::RectToSkRect(tabstrip_bounds),
|
| SkClipOp::kDifference);
|
| separator_rect.set_y(tabstrip_bounds.bottom());
|
|
|