| 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/dialog_client_view.h" | 5 #include "views/window/dialog_client_view.h" |
| 6 | 6 |
| 7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <uxtheme.h> | 9 #include <uxtheme.h> |
| 10 #include <vsstyle.h> | 10 #include <vsstyle.h> |
| 11 #else | 11 #else |
| 12 #include <gtk/gtk.h> | 12 #include <gtk/gtk.h> |
| 13 #endif | 13 #endif |
| 14 | 14 |
| 15 #include <algorithm> | 15 #include <algorithm> |
| 16 | 16 |
| 17 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
| 18 #include "gfx/canvas_skia.h" | |
| 19 #include "gfx/font.h" | |
| 20 #include "grit/app_strings.h" | 18 #include "grit/app_strings.h" |
| 21 #include "ui/base/keycodes/keyboard_codes.h" | 19 #include "ui/base/keycodes/keyboard_codes.h" |
| 22 #include "ui/base/l10n/l10n_util.h" | 20 #include "ui/base/l10n/l10n_util.h" |
| 23 #include "ui/base/resource/resource_bundle.h" | 21 #include "ui/base/resource/resource_bundle.h" |
| 22 #include "ui/gfx/canvas_skia.h" |
| 23 #include "ui/gfx/font.h" |
| 24 #include "views/controls/button/native_button.h" | 24 #include "views/controls/button/native_button.h" |
| 25 #include "views/layout/layout_constants.h" | 25 #include "views/layout/layout_constants.h" |
| 26 #include "views/window/dialog_delegate.h" | 26 #include "views/window/dialog_delegate.h" |
| 27 #include "views/window/window.h" | 27 #include "views/window/window.h" |
| 28 | 28 |
| 29 #if defined(OS_WIN) | 29 #if defined(OS_WIN) |
| 30 #include "gfx/native_theme_win.h" | 30 #include "ui/gfx/native_theme_win.h" |
| 31 #else | 31 #else |
| 32 #include "gfx/skia_utils_gtk.h" | 32 #include "ui/gfx/skia_utils_gtk.h" |
| 33 #include "views/window/hit_test.h" | 33 #include "views/window/hit_test.h" |
| 34 #include "views/widget/widget.h" | 34 #include "views/widget/widget.h" |
| 35 #endif | 35 #endif |
| 36 | 36 |
| 37 using ui::MessageBoxFlags; | 37 using ui::MessageBoxFlags; |
| 38 | 38 |
| 39 namespace views { | 39 namespace views { |
| 40 | 40 |
| 41 namespace { | 41 namespace { |
| 42 | 42 |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 void DialogClientView::InitClass() { | 566 void DialogClientView::InitClass() { |
| 567 static bool initialized = false; | 567 static bool initialized = false; |
| 568 if (!initialized) { | 568 if (!initialized) { |
| 569 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 569 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |
| 570 dialog_button_font_ = new gfx::Font(rb.GetFont(ResourceBundle::BaseFont)); | 570 dialog_button_font_ = new gfx::Font(rb.GetFont(ResourceBundle::BaseFont)); |
| 571 initialized = true; | 571 initialized = true; |
| 572 } | 572 } |
| 573 } | 573 } |
| 574 | 574 |
| 575 } // namespace views | 575 } // namespace views |
| OLD | NEW |