diff options
Diffstat (limited to 'views/window/custom_frame_view.cc')
-rw-r--r-- | views/window/custom_frame_view.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/window/custom_frame_view.cc b/views/window/custom_frame_view.cc index 19ce2fb..f7f9ab3 100644 --- a/views/window/custom_frame_view.cc +++ b/views/window/custom_frame_view.cc @@ -23,7 +23,7 @@ namespace views { // static -ChromeFont* CustomFrameView::title_font_ = NULL; +gfx::Font* CustomFrameView::title_font_ = NULL; namespace { // The frame border is only visible in restored mode and is hardcoded to 4 px on @@ -585,10 +585,10 @@ void CustomFrameView::InitClass() { static bool initialized = false; if (!initialized) { #if defined(OS_WIN) - title_font_ = new ChromeFont(win_util::GetWindowTitleFont()); + title_font_ = new gfx::Font(win_util::GetWindowTitleFont()); #elif defined(OS_LINUX) // TODO: need to resolve what font this is. - title_font_ = new ChromeFont(); + title_font_ = new gfx::Font(); #endif initialized = true; } |