OLD | NEW |
1 // Copyright (c) 2009 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_EXAMPLES_TABBED_PANE_EXAMPLE_H_ | 5 #ifndef VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_ |
6 #define VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_ | 6 #define VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_ |
7 | 7 |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "views/controls/button/text_button.h" | 9 #include "views/controls/button/text_button.h" |
10 #include "views/examples/example_base.h" | 10 #include "views/examples/example_base.h" |
11 | 11 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 // Control buttons to add, remove or select tabs. | 103 // Control buttons to add, remove or select tabs. |
104 views::Button* add_, *add_at_, *remove_at_, *select_at_; | 104 views::Button* add_, *add_at_, *remove_at_, *select_at_; |
105 | 105 |
106 DISALLOW_COPY_AND_ASSIGN(TabbedPaneExample); | 106 DISALLOW_COPY_AND_ASSIGN(TabbedPaneExample); |
107 }; | 107 }; |
108 | 108 |
109 } // namespace examples | 109 } // namespace examples |
110 | 110 |
111 #endif // VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_ | 111 #endif // VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_ |
112 | |
OLD | NEW |