Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: chrome/browser/ui/views/infobars/infobar_container_view.cc

Issue 12036075: alternate ntp: fix website page jankiness when suggestions show and top bars are hidden (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed all comments Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/infobars/infobar_container_view.cc
diff --git a/chrome/browser/ui/views/infobars/infobar_container_view.cc b/chrome/browser/ui/views/infobars/infobar_container_view.cc
index 1a3e0d44ab96567fe3b4f4ce35fa4e65ed7dd3c7..5dc8af01c4f5af9322362a41ed2974d76521b320 100644
--- a/chrome/browser/ui/views/infobars/infobar_container_view.cc
+++ b/chrome/browser/ui/views/infobars/infobar_container_view.cc
@@ -16,8 +16,9 @@ const char InfoBarContainerView::kViewClassName[] = "InfoBarContainerView";
InfoBarContainerView::InfoBarContainerView(
Delegate* delegate,
- chrome::search::SearchModel* search_model)
- : InfoBarContainer(delegate, search_model) {
+ chrome::search::SearchModel* search_model,
+ const InstantModel* instant_model)
+ : InfoBarContainer(delegate, search_model, instant_model) {
set_id(VIEW_ID_INFO_BAR_CONTAINER);
}

Powered by Google App Engine
This is Rietveld 408576698