| Index: third_party/WebKit/Source/modules/canvas2d/ClipList.h
|
| diff --git a/third_party/WebKit/Source/modules/canvas2d/ClipList.h b/third_party/WebKit/Source/modules/canvas2d/ClipList.h
|
| index a286a732839ae10fdfa1c9bd61eadda59223e6ad..707f76cc7fe4703723d779914881bb5e7e8cda50 100644
|
| --- a/third_party/WebKit/Source/modules/canvas2d/ClipList.h
|
| +++ b/third_party/WebKit/Source/modules/canvas2d/ClipList.h
|
| @@ -6,10 +6,10 @@
|
| #define ClipList_h
|
|
|
| #include "platform/graphics/GraphicsTypes.h"
|
| +#include "platform/graphics/paint/PaintCanvas.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Vector.h"
|
|
|
| -class SkCanvas;
|
| class SkPath;
|
|
|
| namespace blink {
|
| @@ -23,7 +23,7 @@ class ClipList {
|
| ~ClipList() {}
|
|
|
| void clipPath(const SkPath&, AntiAliasingMode, const SkMatrix&);
|
| - void playback(SkCanvas*) const;
|
| + void playback(PaintCanvas*) const;
|
| const SkPath& getCurrentClipPath() const;
|
|
|
| private:
|
|
|