chromium/ui/views/cascading_property.cc

// Copyright 2021 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/cascading_property.h"

#include "ui/base/theme_provider.h"
#include "ui/base/ui_base_features.h"
#include "ui/color/color_id.h"
#include "ui/color/color_provider.h"
#include "ui/gfx/color_utils.h"

DEFINE_EXPORTED_UI_CLASS_PROPERTY_TYPE()

namespace views {
namespace {

class CascadingColorProviderColor final : public CascadingProperty<SkColor> {};

}  // namespace

DEFINE_OWNED_UI_CLASS_PROPERTY_KEY()

void SetCascadingColorProviderColor(
    views::View* view,
    const ui::ClassProperty<CascadingProperty<SkColor>*>* property_key,
    ui::ColorId color_id) {}

SkColor GetCascadingBackgroundColor(View* view) {}

SkColor GetCascadingAccentColor(View* view) {}

}  // namespace views