Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SVGMaskPainter_h | |
| 6 #define SVGMaskPainter_h | |
| 7 | |
| 8 #include "platform/geometry/FloatRect.h" | |
| 9 #include "platform/graphics/paint/DisplayItem.h" | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 struct PaintInfo; | |
| 14 class FloatPoint; | |
| 15 class GraphicsContext; | |
| 16 class Path; | |
| 17 class LayoutObject; | |
| 18 class LayoutSVGResourceMasker; | |
| 19 class LayoutSVGShape; | |
|
fs
2015/03/03 12:04:37
Looks like this list could be pruned a bit.
Erik Dahlström (inactive)
2015/03/03 13:08:58
Done.
| |
| 20 | |
| 21 class SVGMaskPainter { | |
| 22 public: | |
| 23 SVGMaskPainter(LayoutSVGResourceMasker& mask) : m_mask(mask) { } | |
| 24 | |
| 25 bool prepareEffect(LayoutObject*, GraphicsContext*); | |
| 26 void finishEffect(LayoutObject*, GraphicsContext*); | |
| 27 | |
| 28 private: | |
| 29 void drawMaskForRenderer(GraphicsContext*, DisplayItemClient, const FloatRec t& targetBoundingBox); | |
| 30 | |
| 31 LayoutSVGResourceMasker& m_mask; | |
| 32 }; | |
| 33 | |
| 34 } // namespace blink | |
| 35 | |
| 36 #endif // SVGShapePainter_h | |
| OLD | NEW |