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

Unified Diff: chrome/browser/ui/gtk/infobars/infobar_container_gtk.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: remove redundant param 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/gtk/infobars/infobar_container_gtk.cc
diff --git a/chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc b/chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc
index 912e1464fa81c9d74b53c30319aa2a439cd077ce..c309f03695cb7247e86cade66a0618d0665c04d7 100644
--- a/chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc
+++ b/chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc
@@ -25,8 +25,9 @@
InfoBarContainerGtk::InfoBarContainerGtk(
InfoBarContainer::Delegate* delegate,
chrome::search::SearchModel* search_model,
+ InstantModel* instant_model,
Profile* profile)
- : InfoBarContainer(delegate, search_model),
+ : InfoBarContainer(delegate, search_model, instant_model),
profile_(profile),
container_(gtk_vbox_new(FALSE, 0)) {
gtk_widget_show(widget());

Powered by Google App Engine
This is Rietveld 408576698