| Index: chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h
|
| diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h
|
| index c1de5a5cef41bb0d958da13bbfdc53004ceaaf2e..d7266a7fb98086d11063319ec610f333ee02cddb 100644
|
| --- a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h
|
| +++ b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h
|
| @@ -12,10 +12,16 @@
|
|
|
| class OmniboxPopupViewMac;
|
|
|
| +@interface AutocompleteMatchWrapper : NSObject {
|
| + @public
|
| + AutocompleteMatch match_;
|
| +}
|
| +@end
|
| +
|
| // OmniboxPopupCell overrides how backgrounds are displayed to
|
| // handle hover versus selected. So long as we're in there, it also
|
| // provides some default initialization.
|
| -@interface OmniboxPopupCell : NSButtonCell {
|
| +@interface OmniboxPopupCell : NSCell {
|
| @private
|
| // The popup view parent of this cell.
|
| OmniboxPopupViewMac* parent_;
|
| @@ -40,6 +46,8 @@ class OmniboxPopupViewMac;
|
| CGFloat contentsOffset_;
|
| }
|
|
|
| +@property(nonatomic, readwrite, retain) NSAttributedString* attributedTitle;
|
| +
|
| - (void)setMatch:(const AutocompleteMatch&)match;
|
|
|
| - (void)setMaxMatchContentsWidth:(CGFloat)maxMatchContentsWidth;
|
|
|