| Index: chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
|
| diff --git a/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc b/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
|
| index 294fd2cec440f3a1a7e1b243bbd027e70a5399c8..098d27c7908190298da5113cabaadeb63a567b47 100644
|
| --- a/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
|
| +++ b/chrome/browser/ui/views/frame/app_non_client_frame_view_aura.cc
|
| @@ -250,10 +250,8 @@ gfx::Rect AppNonClientFrameViewAura::GetControlBounds() const {
|
| if (!control_view_)
|
| return gfx::Rect();
|
| gfx::Size preferred = control_view_->GetPreferredSize();
|
| - gfx::Point location(width() - preferred.width(), 0);
|
| - ConvertPointToWidget(this, &location);
|
| return gfx::Rect(
|
| - location.x(), location.y(),
|
| + width() - preferred.width(), 0,
|
| preferred.width(), preferred.height());
|
| }
|
|
|
|
|