chromium/cc/paint/path_effect.h

// Copyright 2024 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_PATH_EFFECT_H_
#define CC_PAINT_PATH_EFFECT_H_

#include "cc/paint/paint_export.h"
#include "third_party/skia/include/core/SkRefCnt.h"

class SkPathEffect;

namespace cc {

class PaintOpWriter;
class PaintOpReader;

class CC_PAINT_EXPORT PathEffect : public SkRefCnt {};

}  // namespace cc

#endif  // CC_PAINT_PATH_EFFECT_H_