Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: views/controls/tabbed_pane/native_tabbed_pane_win.cc

Issue 1132006: Move app/gfx/canvas and app/gfx/font to gfx/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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"
10 #include "app/gfx/font.h"
11 #include "app/l10n_util_win.h" 9 #include "app/l10n_util_win.h"
12 #include "app/resource_bundle.h" 10 #include "app/resource_bundle.h"
13 #include "base/logging.h" 11 #include "base/logging.h"
14 #include "base/stl_util-inl.h" 12 #include "base/stl_util-inl.h"
13 #include "gfx/canvas.h"
14 #include "gfx/font.h"
15 #include "gfx/native_theme_win.h" 15 #include "gfx/native_theme_win.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
24 // rendered by the system visual styles system. 24 // rendered by the system visual styles system.
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « views/controls/tabbed_pane/native_tabbed_pane_gtk.cc ('k') | views/controls/table/group_table_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698