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 #ifndef VIEWS_CONTROLS_TREE_TREE_VIEW_H_ | 5 #ifndef UI_VIEWS_CONTROLS_TREE_TREE_VIEW_H_ |
6 #define VIEWS_CONTROLS_TREE_TREE_VIEW_H_ | 6 #define UI_VIEWS_CONTROLS_TREE_TREE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 #include <commctrl.h> | 10 #include <commctrl.h> |
11 | 11 |
12 #include <map> | 12 #include <map> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "ui/base/keycodes/keyboard_codes.h" | 16 #include "ui/base/keycodes/keyboard_codes.h" |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 // Did the model return a non-empty set of icons from GetIcons? | 332 // Did the model return a non-empty set of icons from GetIcons? |
333 bool has_custom_icons_; | 333 bool has_custom_icons_; |
334 | 334 |
335 HIMAGELIST image_list_; | 335 HIMAGELIST image_list_; |
336 | 336 |
337 DISALLOW_COPY_AND_ASSIGN(TreeView); | 337 DISALLOW_COPY_AND_ASSIGN(TreeView); |
338 }; | 338 }; |
339 | 339 |
340 } // namespace views | 340 } // namespace views |
341 | 341 |
342 #endif // VIEWS_CONTROLS_TREE_TREE_VIEW_H_ | 342 #endif // UI_VIEWS_CONTROLS_TREE_TREE_VIEW_H_ |
OLD | NEW |