OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/tree/tree_view.h" | 5 #include "views/controls/tree/tree_view.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "app/gfx/canvas.h" | |
10 #include "app/gfx/canvas_paint.h" | |
11 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
12 #include "app/l10n_util_win.h" | 10 #include "app/l10n_util_win.h" |
13 #include "app/resource_bundle.h" | 11 #include "app/resource_bundle.h" |
14 #include "base/i18n/rtl.h" | 12 #include "base/i18n/rtl.h" |
15 #include "base/keyboard_codes.h" | 13 #include "base/keyboard_codes.h" |
16 #include "base/stl_util-inl.h" | 14 #include "base/stl_util-inl.h" |
17 #include "base/win_util.h" | 15 #include "base/win_util.h" |
| 16 #include "gfx/canvas.h" |
| 17 #include "gfx/canvas_paint.h" |
18 #include "gfx/favicon_size.h" | 18 #include "gfx/favicon_size.h" |
19 #include "gfx/icon_util.h" | 19 #include "gfx/icon_util.h" |
20 #include "gfx/point.h" | 20 #include "gfx/point.h" |
21 #include "grit/app_resources.h" | 21 #include "grit/app_resources.h" |
22 #include "views/focus/focus_manager.h" | 22 #include "views/focus/focus_manager.h" |
23 #include "views/widget/widget.h" | 23 #include "views/widget/widget.h" |
24 | 24 |
25 namespace views { | 25 namespace views { |
26 | 26 |
27 TreeView::TreeView() | 27 TreeView::TreeView() |
(...skipping 750 matching lines...) Loading... |
778 } | 778 } |
779 // Fall through and let the default handler process as well. | 779 // Fall through and let the default handler process as well. |
780 break; | 780 break; |
781 } | 781 } |
782 WNDPROC handler = tree->original_handler_; | 782 WNDPROC handler = tree->original_handler_; |
783 DCHECK(handler); | 783 DCHECK(handler); |
784 return CallWindowProc(handler, window, message, w_param, l_param); | 784 return CallWindowProc(handler, window, message, w_param, l_param); |
785 } | 785 } |
786 | 786 |
787 } // namespace views | 787 } // namespace views |
OLD | NEW |