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

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
« no previous file with comments | « chrome/browser/chromeos/input_method/candidate_window.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..9540163b7bdd44f72fad8bfd3609d1bf312db794 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_view.h
+++ b/chrome/browser/chromeos/input_method/candidate_window_view.h
@@ -11,6 +11,10 @@
#include "chrome/browser/chromeos/input_method/ibus_ui_controller.h"
#include "ui/views/view.h"
+namespace gfx {
+class Font;
+}
+
namespace chromeos {
namespace input_method {
@@ -230,8 +234,9 @@ class InfolistWindowView : public views::View {
void Hide();
void DelayHide(unsigned int milliseconds);
void UpdateCandidates(const InputMethodLookupTable& lookup_table);
-
void ResizeAndMoveParentFrame();
+ gfx::Font GetTitleFont() const;
+ gfx::Font GetDescriptionFont() const;
protected:
// Override View::VisibilityChanged()
@@ -269,6 +274,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);
};
« no previous file with comments | « chrome/browser/chromeos/input_method/candidate_window.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698