// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_SLIM_SOLID_COLOR_LAYER_H_ #define CC_SLIM_SOLID_COLOR_LAYER_H_ #include "base/component_export.h" #include "cc/slim/layer.h" namespace cc::slim { // A Layer that renders a solid color. The color is specified by using // SetBackgroundColor() on the base class. class COMPONENT_EXPORT(CC_SLIM) SolidColorLayer : public Layer { … }; } // namespace cc::slim #endif // CC_SLIM_SOLID_COLOR_LAYER_H_