OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "views/window/custom_frame_view.h" | 5 #include "views/window/custom_frame_view.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "grit/ui_resources.h" | 10 #include "grit/ui_resources.h" |
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 title_font_ = new gfx::Font(NativeWidgetWin::GetWindowTitleFont()); | 585 title_font_ = new gfx::Font(NativeWidgetWin::GetWindowTitleFont()); |
586 #elif defined(OS_LINUX) | 586 #elif defined(OS_LINUX) |
587 // TODO(ben): need to resolve what font this is. | 587 // TODO(ben): need to resolve what font this is. |
588 title_font_ = new gfx::Font(); | 588 title_font_ = new gfx::Font(); |
589 #endif | 589 #endif |
590 initialized = true; | 590 initialized = true; |
591 } | 591 } |
592 } | 592 } |
593 | 593 |
594 } // namespace views | 594 } // namespace views |
OLD | NEW |