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

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: 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/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..a7e554562661bdb8e00ac8aacce0ecce6b824c1f 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,
+ const 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