diff options
Diffstat (limited to 'chrome/browser/views/shell_dialogs_win.cc')
-rw-r--r-- | chrome/browser/views/shell_dialogs_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/shell_dialogs_win.cc b/chrome/browser/views/shell_dialogs_win.cc index c211660..bd5d51f 100644 --- a/chrome/browser/views/shell_dialogs_win.cc +++ b/chrome/browser/views/shell_dialogs_win.cc @@ -712,7 +712,7 @@ void SelectFontDialogImpl::FontSelected(LOGFONT logfont, if (listener_) { HFONT font = CreateFontIndirect(&logfont); if (font) { - listener_->FontSelected(ChromeFont::CreateFont(font), params); + listener_->FontSelected(gfx::Font::CreateFont(font), params); DeleteObject(font); } else { listener_->FontSelectionCanceled(params); |