| 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/l10n_util.h" | |
| 10 #include "app/l10n_util_win.h" | 9 #include "app/l10n_util_win.h" |
| 11 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
| 12 #include "base/i18n/rtl.h" | 11 #include "base/i18n/rtl.h" |
| 13 #include "base/keyboard_codes.h" | 12 #include "base/keyboard_codes.h" |
| 14 #include "base/stl_util-inl.h" | 13 #include "base/stl_util-inl.h" |
| 15 #include "base/win_util.h" | 14 #include "base/win_util.h" |
| 16 #include "gfx/canvas_skia.h" | 15 #include "gfx/canvas_skia.h" |
| 17 #include "gfx/canvas_skia_paint.h" | 16 #include "gfx/canvas_skia_paint.h" |
| 18 #include "gfx/favicon_size.h" | 17 #include "gfx/favicon_size.h" |
| 19 #include "gfx/icon_util.h" | 18 #include "gfx/icon_util.h" |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 } | 791 } |
| 793 // Fall through and let the default handler process as well. | 792 // Fall through and let the default handler process as well. |
| 794 break; | 793 break; |
| 795 } | 794 } |
| 796 WNDPROC handler = tree->original_handler_; | 795 WNDPROC handler = tree->original_handler_; |
| 797 DCHECK(handler); | 796 DCHECK(handler); |
| 798 return CallWindowProc(handler, window, message, w_param, l_param); | 797 return CallWindowProc(handler, window, message, w_param, l_param); |
| 799 } | 798 } |
| 800 | 799 |
| 801 } // namespace views | 800 } // namespace views |
| OLD | NEW |