| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_COCOA_BOOKMARK_BUTTON_CELL_H_ | 5 #ifndef CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_ |
| 6 #define CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_ | 6 #define CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_ |
| 7 | 7 |
| 8 #import "base/cocoa_protocols_mac.h" |
| 8 #import "chrome/browser/cocoa/gradient_button_cell.h" | 9 #import "chrome/browser/cocoa/gradient_button_cell.h" |
| 9 | 10 |
| 10 // A button cell that handles drawing/highlighting of buttons in the | 11 // A button cell that handles drawing/highlighting of buttons in the |
| 11 // bookmark bar. | 12 // bookmark bar. |
| 12 | 13 |
| 13 @interface BookmarkButtonCell : GradientButtonCell { | 14 @interface BookmarkButtonCell : GradientButtonCell<NSMenuDelegate> { |
| 14 } | 15 } |
| 15 @end | 16 @end |
| 16 | 17 |
| 17 #endif // CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_ | 18 #endif // CHROME_BROWSER_COCOA_BOOKMARK_BUTTON_CELL_H_ |
| OLD | NEW |