| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h
|
| index 5c14c9c940b774618075418aa3c547f414111f48..8aa899d707ec9e1fce50ffc55397ad64480f9ac8 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h
|
| @@ -47,17 +47,17 @@ class ManagedBookmarkService;
|
| // Used as a maximum width for buttons on the bar.
|
| const CGFloat kDefaultBookmarkWidth = 150.0;
|
|
|
| -// Horizontal frame inset for buttons in the bookmark bar.
|
| -CGFloat BookmarkHorizontalPadding();
|
| -
|
| -// Vertical frame inset for buttons in the bookmark bar.
|
| -CGFloat BookmarkVerticalPadding();
|
| +// Right margin before the last button in the bookmark bar.
|
| +const CGFloat kBookmarkRightMargin = 8.0;
|
|
|
| // Left margin before the first button in the bookmark bar.
|
| -CGFloat BookmarkLeftMargin();
|
| +const CGFloat kBookmarkLeftMargin = 8.0;
|
|
|
| -// Right margin before the last button in the bookmark bar.
|
| -CGFloat BookmarkRightMargin();
|
| +// Vertical frame inset for buttons in the bookmark bar.
|
| +const CGFloat kBookmarkVerticalPadding = 4.0;
|
| +
|
| +// Horizontal frame inset for buttons in the bookmark bar.
|
| +const CGFloat kBookmarkHorizontalPadding = 4.0;
|
|
|
| // Used as a min/max width for buttons on menus (not on the bar).
|
| const CGFloat kBookmarkMenuButtonMinimumWidth = 100.0;
|
|
|