| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ | 6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 // OmniboxPopupCell overrides how backgrounds are displayed to | 10 #include "base/mac/scoped_nsobject.h" |
| 11 // handle hover versus selected. So long as we're in there, it also | 11 |
| 12 // provides some default initialization. | 12 // Draws a single row in the omnibox popup. |
| 13 @interface OmniboxPopupCell : NSButtonCell { | 13 @interface OmniboxPopupCell : NSButtonCell { |
| 14 base::scoped_nsobject<NSAttributedString> contentText_; |
| 15 base::scoped_nsobject<NSAttributedString> descriptionText_; |
| 14 } | 16 } |
| 15 | 17 |
| 18 - (void)setContentText:(NSAttributedString*)contentText; |
| 19 - (void)setDescriptionText:(NSAttributedString*)descriptionText; |
| 20 |
| 16 @end | 21 @end |
| 17 | 22 |
| 18 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ | 23 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_CELL_H_ |
| OLD | NEW |