| Index: chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| diff --git a/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc b/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| index 23a59502132629dee7cff272b220ae78cd404997..1d3e4a81b8877573250986eb8ce6ac93d24d859a 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| +++ b/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| @@ -79,7 +79,8 @@ bool ManagePasswordsIconView::OnMousePressed(const ui::MouseEvent& event) {
|
| }
|
|
|
| void ManagePasswordsIconView::OnMouseReleased(const ui::MouseEvent& event) {
|
| - if (event.IsOnlyLeftMouseButton() && HitTestPoint(event.location())) {
|
| + if (event.IsOnlyLeftMouseButton() &&
|
| + HitTestPoint(gfx::ToFlooredPoint(event.location()))) {
|
| ManagePasswordsBubbleView::ShowBubble(
|
| location_bar_delegate_->GetWebContents(),
|
| ManagePasswordsBubbleView::USER_ACTION);
|
|
|