| Index: chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container.cc b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| index f2f57fde20840666b257fb63c01a9f71803c124d..d707c3b8f6388bd414cd4b4f4bd09ec4076421d5 100644
|
| --- a/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| +++ b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| @@ -630,11 +630,8 @@ void BrowserActionsContainer::OnPaint(gfx::Canvas* canvas) {
|
| ((space_before_drop_icon + kDropIndicatorWidth) / 2);
|
| const int row_height = ToolbarActionsBar::IconHeight();
|
| const int drop_indicator_y = row_height * drop_position_->row;
|
| - gfx::Rect indicator_bounds(drop_indicator_x,
|
| - drop_indicator_y,
|
| - kDropIndicatorWidth,
|
| - row_height);
|
| - indicator_bounds.set_x(GetMirroredXForRect(indicator_bounds));
|
| + gfx::Rect indicator_bounds = GetMirroredRect(gfx::Rect(
|
| + drop_indicator_x, drop_indicator_y, kDropIndicatorWidth, row_height));
|
|
|
| // Color of the drop indicator.
|
| static const SkColor kDropIndicatorColor = SK_ColorBLACK;
|
|
|