| 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 e0d433c0b882d3f4bc6cb9bede7a60b43b875ffb..aa99be4b8b9ae00f395a1a058e661f03bbad2e92 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| +++ b/chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc
|
| @@ -48,7 +48,6 @@ void ManagePasswordsIconView::ShowBubbleIfNeeded(
|
| !ManagePasswordsBubbleView::IsShowing()) {
|
| ManagePasswordsBubbleView::ShowBubble(
|
| location_bar_delegate_->GetWebContents(),
|
| - this,
|
| ManagePasswordsBubbleView::AUTOMATIC);
|
| manage_passwords_bubble_ui_controller->OnBubbleShown();
|
| }
|
| @@ -72,7 +71,6 @@ void ManagePasswordsIconView::OnGestureEvent(ui::GestureEvent* event) {
|
| if (event->type() == ui::ET_GESTURE_TAP) {
|
| ManagePasswordsBubbleView::ShowBubble(
|
| location_bar_delegate_->GetWebContents(),
|
| - this,
|
| ManagePasswordsBubbleView::USER_ACTION);
|
| event->SetHandled();
|
| }
|
| @@ -87,7 +85,6 @@ void ManagePasswordsIconView::OnMouseReleased(const ui::MouseEvent& event) {
|
| if (event.IsOnlyLeftMouseButton() && HitTestPoint(event.location())) {
|
| ManagePasswordsBubbleView::ShowBubble(
|
| location_bar_delegate_->GetWebContents(),
|
| - this,
|
| ManagePasswordsBubbleView::USER_ACTION);
|
| }
|
| }
|
|
|