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

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. 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 | « 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
This is Rietveld 408576698