| Index: chrome/browser/cocoa/bookmark_bar_controller.h
|
| diff --git a/chrome/browser/cocoa/bookmark_bar_controller.h b/chrome/browser/cocoa/bookmark_bar_controller.h
|
| index a2ae1513d6c3561eaa7bd0c1c590d909f83905cc..548210ef53965ba242bdd995c8882cfb03f972e1 100644
|
| --- a/chrome/browser/cocoa/bookmark_bar_controller.h
|
| +++ b/chrome/browser/cocoa/bookmark_bar_controller.h
|
| @@ -18,6 +18,7 @@ class BookmarkModel;
|
| class BookmarkNode;
|
| @class BookmarkBarView;
|
| class GURL;
|
| +@class MenuButton;
|
| class Profile;
|
| class PrefService;
|
| @protocol ViewResizer;
|
| @@ -68,7 +69,7 @@ class PrefService;
|
| id<BookmarkURLOpener> urlDelegate_; // weak
|
|
|
| IBOutlet NSView* buttonView_;
|
| - IBOutlet NSButton* offTheSideButton_;
|
| + IBOutlet MenuButton* offTheSideButton_;
|
| IBOutlet NSMenu* buttonContextMenu_;
|
| }
|
|
|
| @@ -98,7 +99,6 @@ class PrefService;
|
| // From a button, ...
|
| - (IBAction)openBookmark:(id)sender;
|
| - (IBAction)openFolderMenuFromButton:(id)sender;
|
| -- (IBAction)openOffTheSideMenuFromButton:(id)sender;
|
| // From a context menu over the button, ...
|
| - (IBAction)openBookmarkInNewForegroundTab:(id)sender;
|
| - (IBAction)openBookmarkInNewWindow:(id)sender;
|
| @@ -148,6 +148,8 @@ class PrefService;
|
| - (NSMenu *)menuForFolderNode:(const BookmarkNode*)node;
|
| - (int64)nodeIdFromMenuTag:(int32)tag;
|
| - (int32)menuTagFromNodeId:(int64)menuid;
|
| +- (void)buildOffTheSideMenu;
|
| +- (NSMenu*)offTheSideMenu;
|
| @end
|
|
|
| #endif // CHROME_BROWSER_COCOA_BOOKMARK_BAR_CONTROLLER_H_
|
|
|