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

Unified Diff: app/resource_bundle.h

Issue 650074: New network menu button UI for ChromeOS.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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: app/resource_bundle.h
===================================================================
--- app/resource_bundle.h (revision 39463)
+++ app/resource_bundle.h (working copy)
@@ -53,10 +53,11 @@
public:
// An enumeration of the various font styles used throughout Chrome.
// The following holds true for the font sizes:
- // Small <= Base <= Medium <= MediumBold <= Large.
+ // Small <= Base <= Bold <= Medium <= MediumBold <= Large.
enum FontStyle {
SmallFont,
BaseFont,
+ BoldFont,
MediumFont,
// NOTE: depending upon the locale, this may *not* result in a bold font.
MediumBoldFont,
@@ -219,6 +220,7 @@
// The various fonts used. Cached to avoid repeated GDI creation/destruction.
scoped_ptr<gfx::Font> base_font_;
+ scoped_ptr<gfx::Font> bold_font_;
scoped_ptr<gfx::Font> small_font_;
scoped_ptr<gfx::Font> medium_font_;
scoped_ptr<gfx::Font> medium_bold_font_;

Powered by Google App Engine
This is Rietveld 408576698