Add ICU message format support
[chromium-blink-merge.git] / ui / views / controls / table / test_table_model.h
blob45de44b04b954ee5aad1204ff82dd4930e7407ee
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
3 // found in the LICENSE file.
5 #ifndef UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_
6 #define UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_
8 #include "base/compiler_specific.h"
9 #include "ui/base/models/table_model.h"
11 class TestTableModel : public ui::TableModel {
12 public:
13 explicit TestTableModel(int row_count);
14 ~TestTableModel() override;
16 // ui::TableModel overrides:
17 int RowCount() override;
18 base::string16 GetText(int row, int column_id) override;
19 gfx::ImageSkia GetIcon(int row) override;
20 void SetObserver(ui::TableModelObserver* observer) override;
22 private:
23 int row_count_;
24 ui::TableModelObserver* observer_;
26 DISALLOW_COPY_AND_ASSIGN(TestTableModel);
29 #endif // UI_VIEWS_CONTROLS_TABLE_TEST_TABLE_MODEL_H_