| Index: chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h
|
| diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h
|
| index 5114a924b9de736fb063cc852047970c8d2586c1..f4159e6cb1b9a77c46b333808355f8362afd317b 100644
|
| --- a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h
|
| +++ b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h
|
| @@ -46,6 +46,9 @@ class OmniboxPopupViewMac : public OmniboxPopupView,
|
| void OnMatrixRowMiddleClicked(OmniboxPopupMatrix* matrix,
|
| size_t row) override;
|
|
|
| + // Returns the NSImage that should be used as an icon for the given match.
|
| + NSImage* ImageForMatch(const AutocompleteMatch& match) const;
|
| +
|
| OmniboxPopupMatrix* matrix() { return matrix_; }
|
|
|
| protected:
|
| @@ -65,9 +68,6 @@ class OmniboxPopupViewMac : public OmniboxPopupView,
|
| // change.
|
| void PositionPopup(const CGFloat matrixHeight);
|
|
|
| - // Returns the NSImage that should be used as an icon for the given match.
|
| - NSImage* ImageForMatch(const AutocompleteMatch& match);
|
| -
|
| // Opens the URL at the given row.
|
| void OpenURLForRow(size_t row, WindowOpenDisposition disposition);
|
|
|
|
|