Index: chrome/browser/ui/gtk/zoom_bubble_gtk.cc |
diff --git a/chrome/browser/ui/gtk/zoom_bubble_gtk.cc b/chrome/browser/ui/gtk/zoom_bubble_gtk.cc |
index 3037f12741bee51ddee3ee8b3373e5e1de39e837..e7dea872227656970f755622fefce2268eb21c30 100644 |
--- a/chrome/browser/ui/gtk/zoom_bubble_gtk.cc |
+++ b/chrome/browser/ui/gtk/zoom_bubble_gtk.cc |
@@ -33,13 +33,11 @@ const int kBubbleAnchorHeight = 25; |
} |
// static |
-void ZoomBubbleGtk::Show(GtkWidget* anchor, |
- Profile* profile, |
- int zoom_percent, |
- bool autoclose) { |
+void ZoomBubbleGtk::Show(GtkWidget* anchor, Profile* profile, |
+ int zoomPercent, bool autoclose) { |
Ben Goodger (Google)
2012/06/04 15:16:49
leave
Kyle Horimoto
2012/06/05 05:03:59
This was changed in my other CL and must have gott
|
if (g_bubble) |
ZoomBubbleGtk::Close(); |
- g_bubble = new ZoomBubbleGtk(anchor, profile, zoom_percent, autoclose); |
+ g_bubble = new ZoomBubbleGtk(anchor, profile, zoomPercent, autoclose); |
Ben Goodger (Google)
2012/06/04 15:16:49
leave this parameter name the way it was
Kyle Horimoto
2012/06/05 05:03:59
Same.
|
} |
// static |
@@ -64,12 +62,12 @@ void ZoomBubbleGtk::Observe(int type, |
ZoomBubbleGtk::ZoomBubbleGtk(GtkWidget* anchor, |
Profile* profile, |
- int zoom_percent, |
+ int zoomPercent, |
bool autoclose) |
: theme_service_(GtkThemeService::GetFrom(profile)), |
factory_(this) { |
string16 labelText = l10n_util::GetStringFUTF16Int( |
- IDS_ZOOM_PERCENT, zoom_percent); |
+ IDS_ZOOM_PERCENT, zoomPercent); |
label_ = gtk_label_new(UTF16ToUTF8(labelText).c_str()); |
GtkWidget* alignment = gtk_alignment_new(0, 0, 1, 1); |