| Index: chrome/browser/ui/views/omnibox/omnibox_result_view.h
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_result_view.h b/chrome/browser/ui/views/omnibox/omnibox_result_view.h
|
| index 2a0f8019870fef618d450a100d4c778250342e94..c82d68e8624d25995042c40843550850a4942a47 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_result_view.h
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_result_view.h
|
| @@ -158,13 +158,19 @@ class OmniboxResultView : public views::View,
|
| bool is_ui_rtl,
|
| bool is_match_contents_rtl) const;
|
|
|
| + // Returns the font to use for the description line of answer suggestions.
|
| + const gfx::FontList& GetAnswerLineFont() const;
|
| +
|
| + // Returns the height of the the description line of answer suggestions.
|
| int GetAnswerLineHeight() const;
|
| +
|
| + // Returns the height of the content line.
|
| int GetContentLineHeight() const;
|
|
|
| // Creates a RenderText with text and styling from the image line.
|
| std::unique_ptr<gfx::RenderText> CreateAnswerLine(
|
| const SuggestionAnswer::ImageLine& line,
|
| - gfx::FontList font_list) const;
|
| + const gfx::FontList& font_list) const;
|
|
|
| // Adds |text| to |destination|. |text_type| is an index into the
|
| // kTextStyles constant defined in the .cc file and is used to style the text,
|
|
|