chromium/ui/views/controls/bulleted_label_list/bulleted_label_list_view.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/views/controls/bulleted_label_list/bulleted_label_list_view.h"

#include <algorithm>
#include <vector>
#include <memory>

#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/color/color_provider.h"
#include "ui/gfx/canvas.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/layout_provider.h"
#include "ui/views/layout/table_layout.h"
#include "ui/views/style/typography.h"
#include "ui/views/style/typography_provider.h"

namespace views {

namespace {

class BulletView : public View {};

void BulletView::OnPaint(gfx::Canvas* canvas) {}

BEGIN_METADATA()

}  // namespace

BulletedLabelListView::BulletedLabelListView(
    const std::vector<std::u16string>& texts,
    style::TextStyle label_text_style) {}

BulletedLabelListView::~BulletedLabelListView() = default;

BEGIN_METADATA()

}  // namespace views