OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ | 5 #ifndef UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ |
6 #define UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ | 6 #define UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/time.h" | 9 #include "base/time.h" |
10 #include "ui/base/ime/text_input_client.h" | 10 #include "ui/base/ime/text_input_client.h" |
11 #include "ui/views/views_export.h" | 11 #include "ui/views/views_export.h" |
12 | 12 |
13 namespace views { | 13 namespace views { |
14 | 14 |
15 class TreeView; | 15 class TreeView; |
16 | 16 |
17 // TreeViewSelector is used to change the selection in the tree as the user | 17 // TreeViewSelector is used to change the selection in the tree as the user |
18 // types characters. | 18 // types characters. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 base::TimeTicks time_of_last_key_; | 67 base::TimeTicks time_of_last_key_; |
68 | 68 |
69 string16 current_text_; | 69 string16 current_text_; |
70 | 70 |
71 DISALLOW_COPY_AND_ASSIGN(TreeViewSelector); | 71 DISALLOW_COPY_AND_ASSIGN(TreeViewSelector); |
72 }; | 72 }; |
73 | 73 |
74 } // namespace views | 74 } // namespace views |
75 | 75 |
76 #endif // UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ | 76 #endif // UI_VIEWS_CONTROLS_TREE_TREE_VIEW_SELECTOR_H_ |
OLD | NEW |