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 #ifndef VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 5 #ifndef VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
6 #define VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 6 #define VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
7 | 7 |
8 #include "views/view.h" | 8 #include "views/view.h" |
9 | 9 |
10 namespace views { | 10 namespace views { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 DragInfo drag_info_; | 76 DragInfo drag_info_; |
77 | 77 |
78 // Orientation of the split view. | 78 // Orientation of the split view. |
79 bool is_horizontal_; | 79 bool is_horizontal_; |
80 | 80 |
81 // Position of the divider. | 81 // Position of the divider. |
82 int divider_offset_; | 82 int divider_offset_; |
83 | 83 |
84 bool resize_leading_on_bounds_change_; | 84 bool resize_leading_on_bounds_change_; |
85 | 85 |
86 // The accessible name of this view. | |
87 std::wstring accessible_name_; | |
88 | |
89 DISALLOW_COPY_AND_ASSIGN(SingleSplitView); | 86 DISALLOW_COPY_AND_ASSIGN(SingleSplitView); |
90 }; | 87 }; |
91 | 88 |
92 } // namespace views | 89 } // namespace views |
93 | 90 |
94 #endif // VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 91 #endif // VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
OLD | NEW |