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 829441bddf6ddc3013309567bb385f94b37d4a54..8ed6d77975477f1ef5d80e9d473bac62786251f4 100644 |
--- a/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h |
+++ b/chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h |
@@ -11,8 +11,22 @@ |
// handle hover versus selected. So long as we're in there, it also |
// provides some default initialization. |
@interface OmniboxPopupCell : NSButtonCell { |
+ |
+ @private |
+ CGFloat requiredWidth_; |
+ CGFloat contentsWidth_; |
+ CGFloat maxRequiredWidth_; |
+ CGFloat maxContentsWidth_; |
} |
+- (void)setRequiredWidth:(CGFloat)requiredWidth; |
+ |
+- (void)setContentsWidth:(CGFloat)contentsWidth; |
+ |
+- (void)setMaxRequiredWidth:(CGFloat)maxRequiredWidth; |
+ |
+- (void)setMaxContentsWidth:(CGFloat)maxContentsWidth; |
+ |
@end |
#endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ |