| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/controls/tabbed_pane/native_tabbed_pane_win.h" | 5 #include "views/controls/tabbed_pane/native_tabbed_pane_win.h" |
| 6 | 6 |
| 7 #include <vssym32.h> | 7 #include <vssym32.h> |
| 8 | 8 |
| 9 #include "app/gfx/canvas.h" | 9 #include "app/gfx/canvas.h" |
| 10 #include "app/gfx/font.h" | 10 #include "app/gfx/font.h" |
| 11 #include "app/gfx/native_theme_win.h" |
| 11 #include "app/l10n_util_win.h" | 12 #include "app/l10n_util_win.h" |
| 12 #include "app/resource_bundle.h" | 13 #include "app/resource_bundle.h" |
| 13 #include "base/gfx/native_theme.h" | |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/stl_util-inl.h" | 15 #include "base/stl_util-inl.h" |
| 16 #include "views/controls/tabbed_pane/tabbed_pane.h" | 16 #include "views/controls/tabbed_pane/tabbed_pane.h" |
| 17 #include "views/fill_layout.h" | 17 #include "views/fill_layout.h" |
| 18 #include "views/widget/root_view.h" | 18 #include "views/widget/root_view.h" |
| 19 #include "views/widget/widget_win.h" | 19 #include "views/widget/widget_win.h" |
| 20 | 20 |
| 21 namespace views { | 21 namespace views { |
| 22 | 22 |
| 23 // A background object that paints the tab panel background which may be | 23 // A background object that paints the tab panel background which may be |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 //////////////////////////////////////////////////////////////////////////////// | 325 //////////////////////////////////////////////////////////////////////////////// |
| 326 // NativeTabbedPaneWrapper, public: | 326 // NativeTabbedPaneWrapper, public: |
| 327 | 327 |
| 328 // static | 328 // static |
| 329 NativeTabbedPaneWrapper* NativeTabbedPaneWrapper::CreateNativeWrapper( | 329 NativeTabbedPaneWrapper* NativeTabbedPaneWrapper::CreateNativeWrapper( |
| 330 TabbedPane* tabbed_pane) { | 330 TabbedPane* tabbed_pane) { |
| 331 return new NativeTabbedPaneWin(tabbed_pane); | 331 return new NativeTabbedPaneWin(tabbed_pane); |
| 332 } | 332 } |
| 333 | 333 |
| 334 } // namespace views | 334 } // namespace views |
| OLD | NEW |