// 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_PAINT_COLOR_FILTER_H_ #define CC_PAINT_COLOR_FILTER_H_ #include "cc/paint/paint_export.h" #include "third_party/skia/include/core/SkBlendMode.h" #include "third_party/skia/include/core/SkColor.h" #include "third_party/skia/include/core/SkRefCnt.h" class SkColorFilter; class SkColorTable; struct SkHighContrastConfig; namespace cc { class PaintOpWriter; class PaintOpReader; class CC_PAINT_EXPORT ColorFilter : public SkRefCnt { … }; } // namespace cc #endif // CC_PAINT_COLOR_FILTER_H_