Chromium Code Reviews

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

Issue 348017: Add the "Other bookmarks" button on the right of the bookmark bar.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/cocoa/bookmark_bar_toolbar_view.h ('k') | 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
===================================================================
--- chrome/browser/cocoa/bookmark_bar_toolbar_view.mm (revision 30216)
+++ chrome/browser/cocoa/bookmark_bar_toolbar_view.mm (working copy)
@@ -36,24 +36,6 @@
}
}
-- (void)layoutViews {
- if ([controller_ drawAsFloatingBar]) {
- // The internal bookmark bar should have padding to center it.
- NSRect frame = [self frame];
- [buttonView_ setFrame:
- NSMakeRect(bookmarks::kNTPBookmarkBarPadding,
- bookmarks::kNTPBookmarkBarPadding,
- NSWidth(frame) -
- bookmarks::kNTPBookmarkBarPadding,
- NSHeight(frame) -
- bookmarks::kNTPBookmarkBarPadding)];
- } else {
- // The frame of our child should be equal to our frame.
- NSRect frame = [self frame];
- [buttonView_ setFrame:NSMakeRect(0, 0, NSWidth(frame), NSHeight(frame))];
- }
-}
-
- (void)drawRectAsFloating:(NSRect)rect {
NSRect bounds = [self bounds];
« no previous file with comments | « chrome/browser/cocoa/bookmark_bar_toolbar_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine