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

Unified Diff: chrome/browser/ui/gtk/confirm_bubble_gtk.cc

Issue 12634025: Inconsistent use of [x] close panel icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_173251
Patch Set: Line wrapping in CSS Created 7 years, 9 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/confirm_bubble_gtk.cc
diff --git a/chrome/browser/ui/gtk/confirm_bubble_gtk.cc b/chrome/browser/ui/gtk/confirm_bubble_gtk.cc
index 782276777f581ccd6f9c9f81ea328469486e9b49..c00463d3e3d3ad2c8263fef328b450bcaee2e282 100644
--- a/chrome/browser/ui/gtk/confirm_bubble_gtk.cc
+++ b/chrome/browser/ui/gtk/confirm_bubble_gtk.cc
@@ -81,7 +81,7 @@ void ConfirmBubbleGtk::Show() {
gtk_box_pack_start(GTK_BOX(row), title_label, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(row), gtk_label_new(NULL), TRUE, TRUE, 0);
- close_button_.reset(CustomDrawButton::CloseButton(theme_service));
+ close_button_.reset(CustomDrawButton::CloseButtonBubble(theme_service));
g_signal_connect(close_button_->widget(), "clicked",
G_CALLBACK(OnCloseButtonThunk), this);
gtk_box_pack_end(GTK_BOX(row), close_button_->widget(), FALSE, FALSE, 0);

Powered by Google App Engine
This is Rietveld 408576698