Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(730)

Unified Diff: chrome/browser/chromeos/input_method/candidate_window_view.h

Issue 10537022: Temporary fix for Infolist font issue. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698