Index: chrome/browser/chromeos/input_method/candidate_window_view.h |
diff --git a/chrome/browser/chromeos/input_method/candidate_window_view.h b/chrome/browser/chromeos/input_method/candidate_window_view.h |
index 3c9b5ccf920f5e2fa3d6874c1204e24b67ae5d1f..77f36b9b6eb2ed35e9e63968f76629a2083c2293 100644 |
--- a/chrome/browser/chromeos/input_method/candidate_window_view.h |
+++ b/chrome/browser/chromeos/input_method/candidate_window_view.h |
@@ -230,8 +230,9 @@ class InfolistWindowView : public views::View { |
void Hide(); |
void DelayHide(unsigned int milliseconds); |
void UpdateCandidates(const InputMethodLookupTable& lookup_table); |
- |
void ResizeAndMoveParentFrame(); |
+ gfx::Font GetTitleFont(); |
+ gfx::Font GetDescriptionFont(); |
protected: |
// Override View::VisibilityChanged() |
@@ -269,6 +270,11 @@ class InfolistWindowView : public views::View { |
const mozc::commands::InformationList* old_usages, |
const mozc::commands::InformationList* new_usages); |
+ // Information title font |
+ scoped_ptr<gfx::Font> title_font_; |
+ // Information description font |
+ scoped_ptr<gfx::Font> description_font_; |
+ |
DISALLOW_COPY_AND_ASSIGN(InfolistWindowView); |
}; |