#include "ui/views/controls/dot_indicator.h"
#include <algorithm>
#include <utility>
#include "base/memory/ptr_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/compositor/layer.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/views/cascading_property.h"
namespace views {
DotIndicator::~DotIndicator() = default;
DotIndicator* DotIndicator::Install(View* parent) { … }
void DotIndicator::SetColor(SkColor dot_color, SkColor border_color) { … }
void DotIndicator::Show() { … }
void DotIndicator::Hide() { … }
DotIndicator::DotIndicator() { … }
void DotIndicator::OnPaint(gfx::Canvas* canvas) { … }
void DotIndicator::OnThemeChanged() { … }
BEGIN_METADATA(…)
}