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

Unified Diff: third_party/WebKit/Source/core/css/resolver/ElementStyleResources.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/css/resolver/ElementStyleResources.h
diff --git a/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h b/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
index 25e75ef26c963353fe42110278bb06b0634bd83d..2d7dc04ea4655fb47fd77f20317e583670adbb2a 100644
--- a/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
+++ b/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
@@ -42,7 +42,7 @@ class CSSURIValue;
class CSSValue;
class ComputedStyle;
class Document;
-class FilterOperation;
+class SVGElementProxy;
class StyleImage;
class StylePendingImage;
@@ -58,11 +58,10 @@ class ElementStyleResources {
StyleImage* styleImage(CSSPropertyID, const CSSValue&);
StyleImage* cachedOrPendingFromValue(CSSPropertyID, const CSSImageValue&);
StyleImage* setOrPendingFromValue(CSSPropertyID, const CSSImageSetValue&);
+ SVGElementProxy& cachedOrPendingFromValue(const CSSURIValue&);
void loadPendingResources(ComputedStyle*);
- void addPendingSVGDocument(FilterOperation*, const CSSURIValue*);
-
private:
StyleImage* cursorOrPendingFromValue(CSSPropertyID,
const CSSCursorImageValue&);
@@ -79,8 +78,6 @@ class ElementStyleResources {
Member<Document> m_document;
HashSet<CSSPropertyID> m_pendingImageProperties;
- HeapHashMap<Member<FilterOperation>, Member<const CSSURIValue>>
- m_pendingSVGDocuments;
float m_deviceScaleFactor;
};

Powered by Google App Engine
This is Rietveld 408576698