Index: chrome/browser/cocoa/bookmark_bar_toolbar_view.mm |
diff --git a/chrome/browser/cocoa/bookmark_bar_toolbar_view.mm b/chrome/browser/cocoa/bookmark_bar_toolbar_view.mm |
index 3fe75dc86f2b0ca139faafcac0ab810a422c4084..05acccc8a911d293be7631e0de693b4097d67b3e 100644 |
--- a/chrome/browser/cocoa/bookmark_bar_toolbar_view.mm |
+++ b/chrome/browser/cocoa/bookmark_bar_toolbar_view.mm |
@@ -76,14 +76,15 @@ const CGFloat kBorderRadius = 3.0; |
} |
// Draw our bookmark bar border on top of the background. |
- NSRect frame_rect = |
+ NSRect frameRect = |
NSMakeRect(bookmarks::kNTPBookmarkBarPadding, |
bookmarks::kNTPBookmarkBarPadding, |
NSWidth(bounds) - 2 * bookmarks::kNTPBookmarkBarPadding, |
NSHeight(bounds) - 2 * bookmarks::kNTPBookmarkBarPadding); |
// Now draw a bezier path with rounded rectangles around the area |
+ frameRect = NSInsetRect(frameRect, 0.5, 0.5); |
NSBezierPath* border = |
- [NSBezierPath bezierPathWithRoundedRect:frame_rect |
+ [NSBezierPath bezierPathWithRoundedRect:frameRect |
xRadius:kBorderRadius |
yRadius:kBorderRadius]; |
NSColor* toolbarColor = |
@@ -100,7 +101,7 @@ const CGFloat kBorderRadius = 3.0; |
[border fill]; |
NSColor* borderColor = |
- [[self gtm_theme] strokeColorForStyle:GTMThemeStyleToolBar |
+ [[self gtm_theme] strokeColorForStyle:GTMThemeStyleToolBarButton |
state:GTMThemeStateActiveWindow]; |
[borderColor set]; |
[border stroke]; |