| 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 UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 5 #ifndef UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
| 6 #define UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 6 #define UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
| 10 #include "views/view.h" | 10 #include "ui/views/view.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 | 13 |
| 14 class SingleSplitViewListener; | 14 class SingleSplitViewListener; |
| 15 | 15 |
| 16 // SingleSplitView lays out two views next to each other, either horizontally | 16 // SingleSplitView lays out two views next to each other, either horizontally |
| 17 // or vertically. A splitter exists between the two views that the user can | 17 // or vertically. A splitter exists between the two views that the user can |
| 18 // drag around to resize the views. | 18 // drag around to resize the views. |
| 19 // SingleSplitViewListener's SplitHandleMoved notification helps to monitor user | 19 // SingleSplitViewListener's SplitHandleMoved notification helps to monitor user |
| 20 // initiated layout changes. | 20 // initiated layout changes. |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 // The accessible name of this view. | 126 // The accessible name of this view. |
| 127 string16 accessible_name_; | 127 string16 accessible_name_; |
| 128 | 128 |
| 129 DISALLOW_COPY_AND_ASSIGN(SingleSplitView); | 129 DISALLOW_COPY_AND_ASSIGN(SingleSplitView); |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace views | 132 } // namespace views |
| 133 | 133 |
| 134 #endif // UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ | 134 #endif // UI_VIEWS_CONTROLS_SINGLE_SPLIT_VIEW_H_ |
| OLD | NEW |