// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_CONTROLS_TABLE_TABLE_HEADER_H_ #define UI_VIEWS_CONTROLS_TABLE_TABLE_HEADER_H_ #include <memory> #include "base/memory/weak_ptr.h" #include "ui/base/metadata/metadata_header_macros.h" #include "ui/gfx/font_list.h" #include "ui/views/controls/table/table_view.h" #include "ui/views/view.h" #include "ui/views/views_export.h" namespace views { // Views used to render the header for the table. class VIEWS_EXPORT TableHeader : public View { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_TABLE_TABLE_HEADER_H_