diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:51:35 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:51:35 +0000 |
commit | f4471c57c0d9df0dcbf4bc1b88c69ae1867c4042 (patch) | |
tree | 972bcd3cd909f08fdeec22e9831458d32a88d4d5 /chrome/browser/cocoa/bookmark_bar_view.h | |
parent | e9d71884e97fd3484f2aad0b6f7562e3f86a1616 (diff) | |
download | chromium_src-f4471c57c0d9df0dcbf4bc1b88c69ae1867c4042.zip chromium_src-f4471c57c0d9df0dcbf4bc1b88c69ae1867c4042.tar.gz chromium_src-f4471c57c0d9df0dcbf4bc1b88c69ae1867c4042.tar.bz2 |
[Mac] Make bookmark bar primitive drag destination.
BUG=18289
TEST=Drag a link or bookmarklet from the web to the bookmark bar. It should be added at the end of the bar.
Review URL: http://codereview.chromium.org/336001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29906 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/bookmark_bar_view.h')
-rw-r--r-- | chrome/browser/cocoa/bookmark_bar_view.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/bookmark_bar_view.h b/chrome/browser/cocoa/bookmark_bar_view.h index 9bd94d2..9b81ec4 100644 --- a/chrome/browser/cocoa/bookmark_bar_view.h +++ b/chrome/browser/cocoa/bookmark_bar_view.h @@ -10,11 +10,15 @@ #import <Cocoa/Cocoa.h> +@class BookmarkBarController; + @interface BookmarkBarView : NSView { + @private + IBOutlet BookmarkBarController* controller_; IBOutlet NSTextField* noItemTextfield_; } --(NSTextField*)noItemTextfield; +- (NSTextField*)noItemTextfield; @end |