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_EXAMPLES_TABLE2_EXAMPLE_H_ | 5 #ifndef UI_VIEWS_EXAMPLES_TABLE2_EXAMPLE_H_ |
6 #define UI_VIEWS_EXAMPLES_TABLE2_EXAMPLE_H_ | 6 #define UI_VIEWS_EXAMPLES_TABLE2_EXAMPLE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "third_party/skia/include/core/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
14 #include "ui/base/models/table_model.h" | 14 #include "ui/base/models/table_model.h" |
| 15 #include "ui/views/controls/table/table_view_observer.h" |
15 #include "ui/views/examples/example_base.h" | 16 #include "ui/views/examples/example_base.h" |
16 #include "views/controls/button/button.h" | 17 #include "views/controls/button/button.h" |
17 #include "views/controls/table/table_view_observer.h" | |
18 | 18 |
19 namespace views { | 19 namespace views { |
20 class Checkbox; | 20 class Checkbox; |
21 class Event; | 21 class Event; |
22 class TableView2; | 22 class TableView2; |
23 } | 23 } |
24 | 24 |
25 namespace examples { | 25 namespace examples { |
26 | 26 |
27 class Table2Example : public ExampleBase, | 27 class Table2Example : public ExampleBase, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 SkBitmap icon1_; | 65 SkBitmap icon1_; |
66 SkBitmap icon2_; | 66 SkBitmap icon2_; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(Table2Example); | 68 DISALLOW_COPY_AND_ASSIGN(Table2Example); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace examples | 71 } // namespace examples |
72 | 72 |
73 #endif // UI_VIEWS_EXAMPLES_TABLE2_EXAMPLE_H_ | 73 #endif // UI_VIEWS_EXAMPLES_TABLE2_EXAMPLE_H_ |
OLD | NEW |