| Index: ui/views/controls/table/group_table_view_views.cc
|
| diff --git a/ui/views/controls/table/group_table_view_views.cc b/ui/views/controls/table/group_table_view_views.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b3fb06a591a5b58f9893b62faa60ef0667263286
|
| --- /dev/null
|
| +++ b/ui/views/controls/table/group_table_view_views.cc
|
| @@ -0,0 +1,31 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ui/views/controls/table/group_table_view_views.h"
|
| +
|
| +#include "ui/views/controls/table/group_table_model.h"
|
| +
|
| +namespace views {
|
| +
|
| +const char GroupTableView::kViewClassName[] = "views/GroupTableView";
|
| +
|
| +GroupTableView::GroupTableView(GroupTableModel* model,
|
| + const std::vector<ui::TableColumn>& columns,
|
| + TableTypes table_type,
|
| + bool single_selection,
|
| + bool resizable_columns,
|
| + bool autosize_columns,
|
| + bool draw_group_separators)
|
| + : TableView(model, columns, table_type, false, resizable_columns,
|
| + autosize_columns) {
|
| +}
|
| +
|
| +GroupTableView::~GroupTableView() {
|
| +}
|
| +
|
| +std::string GroupTableView::GetClassName() const {
|
| + return kViewClassName;
|
| +}
|
| +
|
| +} // namespace views
|
|
|