Index: chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.mm |
diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.mm b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.mm |
index 19889e9a3e59135a2964b300f264ef053283a17e..8e378ca2352489352bc63a6cdfa3f1137644b1b5 100644 |
--- a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.mm |
+++ b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.mm |
@@ -43,12 +43,11 @@ const NSInteger kMiddleButtonNumber = 2; |
[[OmniboxPopupCellData alloc] |
initWithMatch:match |
contentsOffset:contentsOffset |
- image:popupView.ImageForMatch(match, NO) |
+ image:popupView.ImageForMatch(match) |
answerImage:(match.answer ? answerImage : nil) |
forDarkTheme:isDarkTheme]); |
- if (isDarkTheme) { |
- [cellData setIncognitoImage:popupView.ImageForMatch(match, YES)]; |
- } |
+ if (isDarkTheme) |
+ [cellData setIncognitoImage:popupView.ImageForMatch(match)]; |
[array addObject:cellData]; |
if (match.type == AutocompleteMatchType::SEARCH_SUGGEST_TAIL) { |
max_match_contents_width = |