| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TABLE_TABLE_VIEW2_H_ | 5 #ifndef VIEWS_CONTROLS_TABLE_TABLE_VIEW2_H_ |
| 6 #define VIEWS_CONTROLS_TABLE_TABLE_VIEW2_H_ | 6 #define VIEWS_CONTROLS_TABLE_TABLE_VIEW2_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 15 #include "gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
| 16 #include "views/controls/table/table_view.h" | 16 #include "views/controls/table/table_view.h" |
| 17 #include "views/controls/table/native_table_wrapper.h" | 17 #include "views/controls/table/native_table_wrapper.h" |
| 18 #include "views/view.h" | 18 #include "views/view.h" |
| 19 #include "third_party/skia/include/core/SkColor.h" | 19 #include "third_party/skia/include/core/SkColor.h" |
| 20 #include "ui/base/models/table_model_observer.h" | 20 #include "ui/base/models/table_model_observer.h" |
| 21 | 21 |
| 22 class SkBitmap; | 22 class SkBitmap; |
| 23 | 23 |
| 24 namespace ui { | 24 namespace ui { |
| 25 struct TableColumn; | 25 struct TableColumn; |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 266 |
| 267 // The object that actually implements the table. | 267 // The object that actually implements the table. |
| 268 NativeTableWrapper* native_wrapper_; | 268 NativeTableWrapper* native_wrapper_; |
| 269 | 269 |
| 270 DISALLOW_COPY_AND_ASSIGN(TableView2); | 270 DISALLOW_COPY_AND_ASSIGN(TableView2); |
| 271 }; | 271 }; |
| 272 | 272 |
| 273 } // namespace views | 273 } // namespace views |
| 274 | 274 |
| 275 #endif // VIEWS_CONTROLS_TABLE_TABLE_VIEW2_H_ | 275 #endif // VIEWS_CONTROLS_TABLE_TABLE_VIEW2_H_ |
| OLD | NEW |