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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h

Issue 7528007: [Mac] Delete more bookmark bar folder code. This removes things that were missed last time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_
6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_ 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_
7 #pragma once 7 #pragma once
8 8
9 #import "base/mac/cocoa_protocols.h" 9 #import "base/mac/cocoa_protocols.h"
10 #import "chrome/browser/ui/cocoa/gradient_button_cell.h" 10 #import "chrome/browser/ui/cocoa/gradient_button_cell.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 // |-setBookmarkCellText:image:| is used to set the text and image of 48 // |-setBookmarkCellText:image:| is used to set the text and image of
49 // a BookmarkButtonCell, and align the image to the left (NSImageLeft) 49 // a BookmarkButtonCell, and align the image to the left (NSImageLeft)
50 // if there is text in the title, and centered (NSImageCenter) if 50 // if there is text in the title, and centered (NSImageCenter) if
51 // there is not. If |title| is nil, do not reset the title. 51 // there is not. If |title| is nil, do not reset the title.
52 - (void)setBookmarkCellText:(NSString*)title 52 - (void)setBookmarkCellText:(NSString*)title
53 image:(NSImage*)image; 53 image:(NSImage*)image;
54 54
55 // Set the color of text in this cell. 55 // Set the color of text in this cell.
56 - (void)setTextColor:(NSColor*)color; 56 - (void)setTextColor:(NSColor*)color;
57 57
58 - (BOOL)isFolderButtonCell;
59
60 @end 58 @end
61 59
62 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_ 60 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUTTON_CELL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698