| Index: chrome/browser/cocoa/bookmark_bar_folder_window.h
|
| ===================================================================
|
| --- chrome/browser/cocoa/bookmark_bar_folder_window.h (revision 46002)
|
| +++ chrome/browser/cocoa/bookmark_bar_folder_window.h (working copy)
|
| @@ -6,7 +6,10 @@
|
| #define CHROME_BROWSER_COCOA_BOOKMARK_BAR_FOLDER_WINDOW_H_
|
|
|
| #import <Cocoa/Cocoa.h>
|
| +#import "base/cocoa_protocols_mac.h"
|
| +#include "base/scoped_nsobject.h"
|
|
|
| +
|
| // Window for a bookmark folder "menu". This menu pops up when you
|
| // click on a bookmark button that represents a folder of bookmarks.
|
| // This window is borderless.
|
| @@ -15,7 +18,11 @@
|
|
|
| // Content view for the above window. "Stock" other than the drawing
|
| // of rounded corners. Only used in the nib.
|
| -@interface BookmarkBarFolderWindowContentView : NSView
|
| +@interface BookmarkBarFolderWindowContentView : NSView {
|
| + // Arrows to show ability to scroll up and down as needed.
|
| + scoped_nsobject<NSImage> arrowUpImage_;
|
| + scoped_nsobject<NSImage> arrowDownImage_;
|
| +}
|
| @end
|
|
|
| // Scroll view that contains the main view (where the buttons go).
|
|
|