Index: Source/core/html/canvas/CanvasRenderingContext2D.h |
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h |
index 8abdc7459101481a3f110522d9576b2a90ca0482..3c9013f577dd72fa25a2b65728093219a8d18783 100644 |
--- a/Source/core/html/canvas/CanvasRenderingContext2D.h |
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.h |
@@ -119,6 +119,9 @@ public: |
String globalCompositeOperation() const; |
void setGlobalCompositeOperation(const String&); |
+ String filter() const; |
+ void setFilter(const String&); |
+ |
void save(); |
void restore(); |
@@ -263,7 +266,7 @@ private: |
void inflateStrokeRect(FloatRect&) const; |
template<typename DrawFunc> |
- void fullCanvasCompositedDraw(const DrawFunc&, CanvasRenderingContext2DState::PaintType, CanvasRenderingContext2DState::ImageType); |
+ void compositedDraw(const DrawFunc&, CanvasRenderingContext2DState::PaintType, CanvasRenderingContext2DState::ImageType); |
void drawFocusIfNeededInternal(const Path&, Element*); |
bool focusRingCallIsValid(const Path&, Element*); |