Index: views/window/dialog_client_view.cc |
=================================================================== |
--- views/window/dialog_client_view.cc (revision 16106) |
+++ views/window/dialog_client_view.cc (working copy) |
@@ -77,7 +77,7 @@ |
} // namespace |
// static |
-ChromeFont* DialogClientView::dialog_button_font_ = NULL; |
+gfx::Font* DialogClientView::dialog_button_font_ = NULL; |
static const int kDialogMinButtonWidth = 75; |
static const int kDialogButtonLabelSpacing = 16; |
static const int kDialogButtonContentSpacing = 5; |
@@ -452,7 +452,7 @@ |
static bool initialized = false; |
if (!initialized) { |
ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |
- dialog_button_font_ = new ChromeFont(rb.GetFont(ResourceBundle::BaseFont)); |
+ dialog_button_font_ = new gfx::Font(rb.GetFont(ResourceBundle::BaseFont)); |
initialized = true; |
} |
} |