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 7d1af393ef7f13d59a7466b9f6447904dac86f50..197064bd4028a39d871717fb1592fff1188cfdc5 100644 |
--- a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc |
+++ b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc |
@@ -370,7 +370,7 @@ void OmniboxPopupContentsView::OnGestureEvent(ui::GestureEvent* event) { |
void OmniboxPopupContentsView::PaintResultViews(gfx::Canvas* canvas) { |
canvas->DrawColor(result_view_at(0)->GetColor( |
OmniboxResultView::NORMAL, OmniboxResultView::BACKGROUND)); |
- View::PaintChildren(canvas); |
+ View::PaintChildren(canvas, views::CullSet()); |
} |
int OmniboxPopupContentsView::CalculatePopupHeight() { |
@@ -433,7 +433,8 @@ void OmniboxPopupContentsView::OnPaint(gfx::Canvas* canvas) { |
width(), bottom_shadow_->height()); |
} |
-void OmniboxPopupContentsView::PaintChildren(gfx::Canvas* canvas) { |
+void OmniboxPopupContentsView::PaintChildren(gfx::Canvas* canvas, |
+ const views::CullSet& cull_set) { |
// We paint our children inside OnPaint(). |
} |