Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

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

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 f90bf24a11d5e3b27f3ed423373cd71fa80d5d38..8805083ba956ff4e08e3b4a223effe485f5f5e71 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
@@ -37,7 +37,6 @@
namespace blink {
class FilterEffect;
-class FilterOperations;
class PaintLayer;
// PaintLayerFilterInfo holds the filter information for painting.
@@ -59,13 +58,16 @@ class PaintLayerFilterInfo final
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; }
- void filterNeedsInvalidation() override;
+ TreeScope* treeScope() override;
+
+ void resourceContentChanged() override;
+ void resourceElementChanged() 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
This is Rietveld 408576698