Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h

Issue 2482353002: Revert of Tracking filter mutation via SVGElementProxy (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
index 8805083ba956ff4e08e3b4a223effe485f5f5e71..f90bf24a11d5e3b27f3ed423373cd71fa80d5d38 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
@@ -37,6 +37,7 @@
namespace blink {
class FilterEffect;
+class FilterOperations;
class PaintLayer;
// PaintLayerFilterInfo holds the filter information for painting.
@@ -58,16 +59,13 @@
explicit PaintLayerFilterInfo(PaintLayer*);
~PaintLayerFilterInfo() override;
+ FilterEffect* lastEffect() const { return m_lastEffect; }
void setLastEffect(FilterEffect*);
- FilterEffect* lastEffect() const;
- void invalidateFilterChain();
+ void updateReferenceFilterClients(const FilterOperations&);
void clearLayer() { m_layer = nullptr; }
- TreeScope* treeScope() override;
-
- void resourceContentChanged() override;
- void resourceElementChanged() override;
+ void filterNeedsInvalidation() override;
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayer.cpp ('k') | third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine