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

Unified Diff: chrome/browser/cocoa/bookmark_bar_toolbar_view.mm

Issue 342051: [mac] Make NTP floating style rect 1px thick. (Closed)
Patch Set: color Created 11 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698