Index: chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc |
diff --git a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc |
index 9068acedf9e3297db03f34c98e8c4f7daab33255..c9e6d11e31c139e2cbd8b1f6ffa701c59f7b36b4 100644 |
--- a/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc |
+++ b/chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc |
@@ -1030,7 +1030,7 @@ bool AutocompletePopupContentsView::OnMousePressed( |
size_t index = GetIndexForPoint(event.location()); |
model_->SetHoveredLine(index); |
if (HasMatchAt(index) && event.IsLeftMouseButton()) |
- model_->SetSelectedLine(index, false); |
+ model_->SetSelectedLine(index, false, false); |
} |
return true; |
} |
@@ -1056,7 +1056,7 @@ bool AutocompletePopupContentsView::OnMouseDragged( |
size_t index = GetIndexForPoint(event.location()); |
model_->SetHoveredLine(index); |
if (!ignore_mouse_drag_ && HasMatchAt(index) && event.IsLeftMouseButton()) |
- model_->SetSelectedLine(index, false); |
+ model_->SetSelectedLine(index, false, false); |
} |
return true; |
} |