| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_TABLE_TEST_TABLE_MODEL_H_ | 5 #ifndef UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_ |
| 6 #define UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_ | 6 #define UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "ui/base/models/table_model.h" | 10 #include "ui/base/models/table_model.h" |
| 10 | 11 |
| 11 class TestTableModel : public ui::TableModel { | 12 class TestTableModel : public ui::TableModel { |
| 12 public: | 13 public: |
| 13 explicit TestTableModel(int row_count); | 14 explicit TestTableModel(int row_count); |
| 14 ~TestTableModel() override; | 15 ~TestTableModel() override; |
| 15 | 16 |
| 16 // ui::TableModel overrides: | 17 // ui::TableModel overrides: |
| 17 int RowCount() override; | 18 int RowCount() override; |
| 18 base::string16 GetText(int row, int column_id) override; | 19 base::string16 GetText(int row, int column_id) override; |
| 19 gfx::ImageSkia GetIcon(int row) override; | 20 gfx::ImageSkia GetIcon(int row) override; |
| 20 void SetObserver(ui::TableModelObserver* observer) override; | 21 void SetObserver(ui::TableModelObserver* observer) override; |
| 21 | 22 |
| 22 private: | 23 private: |
| 23 int row_count_; | 24 int row_count_; |
| 24 ui::TableModelObserver* observer_; | 25 ui::TableModelObserver* observer_; |
| 25 | 26 |
| 26 DISALLOW_COPY_AND_ASSIGN(TestTableModel); | 27 DISALLOW_COPY_AND_ASSIGN(TestTableModel); |
| 27 }; | 28 }; |
| 28 | 29 |
| 29 #endif // UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_ | 30 #endif // UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_ |
| OLD | NEW |