| Index: chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc b/chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc
|
| index 0eba415fe92fcfcd39eb00288d7ae10ac1e630be..031259bfdb643dac20ff26ab0163b7bf52bb5d93 100644
|
| --- a/chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/bookmarks/bookmark_bubble_gtk.cc
|
| @@ -38,9 +38,6 @@ namespace {
|
| // keeps track of the currently open bubble, or NULL if none is open.
|
| BookmarkBubbleGtk* g_bubble = NULL;
|
|
|
| -// Padding between content and edge of bubble.
|
| -const int kContentBorder = 7;
|
| -
|
| } // namespace
|
|
|
| // static
|
| @@ -119,7 +116,8 @@ BookmarkBubbleGtk::BookmarkBubbleGtk(GtkWidget* anchor,
|
| // portion with the name entry and the folder combo. |bottom| is the final
|
| // row with a spacer, and the edit... and close buttons on the right.
|
| GtkWidget* content = gtk_vbox_new(FALSE, 5);
|
| - gtk_container_set_border_width(GTK_CONTAINER(content), kContentBorder);
|
| + gtk_container_set_border_width(GTK_CONTAINER(content),
|
| + ui::kContentAreaBorder);
|
| GtkWidget* top = gtk_hbox_new(FALSE, 0);
|
|
|
| gtk_misc_set_alignment(GTK_MISC(label), 0, 1);
|
|
|