| 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 #include "views/examples/table2_example.h" | 5 #include "views/examples/table2_example.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "third_party/skia/include/core/SkCanvas.h" | 8 #include "third_party/skia/include/core/SkCanvas.h" |
| 9 #include "views/controls/button/checkbox.h" | 9 #include "views/controls/button/checkbox.h" |
| 10 #include "views/controls/table/table_view2.h" | 10 #include "views/controls/table/table_view2.h" |
| 11 #include "views/grid_layout.h" | 11 #include "views/layout/grid_layout.h" |
| 12 | 12 |
| 13 namespace examples { | 13 namespace examples { |
| 14 | 14 |
| 15 Table2Example::Table2Example(ExamplesMain* main) | 15 Table2Example::Table2Example(ExamplesMain* main) |
| 16 : ExampleBase(main) { | 16 : ExampleBase(main) { |
| 17 } | 17 } |
| 18 | 18 |
| 19 Table2Example::~Table2Example() { | 19 Table2Example::~Table2Example() { |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 void Table2Example::OnKeyDown(ui::KeyboardCode virtual_keycode) { | 145 void Table2Example::OnKeyDown(ui::KeyboardCode virtual_keycode) { |
| 146 } | 146 } |
| 147 | 147 |
| 148 void Table2Example::OnTableViewDelete(views::TableView* table_view) { | 148 void Table2Example::OnTableViewDelete(views::TableView* table_view) { |
| 149 } | 149 } |
| 150 | 150 |
| 151 void Table2Example::OnTableView2Delete(views::TableView2* table_view) { | 151 void Table2Example::OnTableView2Delete(views::TableView2* table_view) { |
| 152 } | 152 } |
| 153 | 153 |
| 154 } // namespace examples | 154 } // namespace examples |
| OLD | NEW |