chromium/ui/views/examples/examples_themed_label.cc

// Copyright 2022 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/examples/examples_themed_label.h"

#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/color/color_provider.h"

namespace views::examples {

ThemedLabel::ThemedLabel() = default;

ThemedLabel::~ThemedLabel() = default;

std::optional<ui::ColorId> ThemedLabel::GetEnabledColorId() const {}

void ThemedLabel::SetEnabledColorId(
    std::optional<ui::ColorId> enabled_color_id) {}

// View:
void ThemedLabel::OnThemeChanged() {}

BEGIN_METADATA()

}  // namespace views::examples