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; |
}; |