summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/bookmark_button_cell.h
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 20:43:06 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 20:43:06 +0000
commite798e192afce58d16bb369567e9ade74f396649b (patch)
tree7528a9f03d58f34b5dd4203d5ede0ed5d9d19675 /chrome/browser/cocoa/bookmark_button_cell.h
parentc2d4449362cb38bfe492d7655885c4c5b3944139 (diff)
downloadchromium_src-e798e192afce58d16bb369567e9ade74f396649b.zip
chromium_src-e798e192afce58d16bb369567e9ade74f396649b.tar.gz
chromium_src-e798e192afce58d16bb369567e9ade74f396649b.tar.bz2
Use delegate protocols present in the 10.6 SDK. For previous SDKs, provide
empty protocol definitions for compatibility. BUG=20925 TEST=build Review URL: http://codereview.chromium.org/209004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26477 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/bookmark_button_cell.h')
-rw-r--r--chrome/browser/cocoa/bookmark_button_cell.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/bookmark_button_cell.h b/chrome/browser/cocoa/bookmark_button_cell.h
index f6929cb..252ed08 100644
--- a/chrome/browser/cocoa/bookmark_button_cell.h
+++ b/chrome/browser/cocoa/bookmark_button_cell.h
@@ -5,12 +5,13 @@
#ifndef CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_
#define CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_
+#import "base/cocoa_protocols_mac.h"
#import "chrome/browser/cocoa/gradient_button_cell.h"
// A button cell that handles drawing/highlighting of buttons in the
// bookmark bar.
-@interface BookmarkButtonCell : GradientButtonCell {
+@interface BookmarkButtonCell : GradientButtonCell<NSMenuDelegate> {
}
@end