| Index: chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| index c7b675ff970eccbd1e7fc7a5fe3b4fd409d86395..bb62b8c46c27cebc54c2c911cb16d72e9c0a5afe 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| @@ -270,6 +270,11 @@ gfx::Image OmniboxPopupContentsView::GetIconIfExtensionMatch(
|
| return model_->GetIconIfExtensionMatch(GetMatchAtIndex(index));
|
| }
|
|
|
| +bool OmniboxPopupContentsView::IsStarredMatch(
|
| + const AutocompleteMatch& match) const {
|
| + return model_->IsStarredMatch(match);
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // OmniboxPopupContentsView, AnimationDelegate implementation:
|
|
|
|
|