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

Unified Diff: third_party/WebKit/Source/core/css/resolver/ElementStyleResources.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. 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 2d7dc04ea4655fb47fd77f20317e583670adbb2a..25e75ef26c963353fe42110278bb06b0634bd83d 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 CSSValue;
class ComputedStyle;
class Document;
-class SVGElementProxy;
+class FilterOperation;
class StyleImage;
class StylePendingImage;
@@ -58,9 +58,10 @@
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,
@@ -78,6 +79,8 @@
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