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/css/resolver/ElementStyleResources.h

Issue 2165833006: Merge CSSSVGDocumentValue with CSSURIValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixup FilterInterpolationFunctions Created 4 years, 5 months 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 355e8aab20b7ea628cd7606dc301db95848fd32b..876d4bb2b01784c48b4668429695d77e7aa0722b 100644
--- a/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
+++ b/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
@@ -37,7 +37,7 @@ class CSSCursorImageValue;
class CSSImageGeneratorValue;
class CSSImageSetValue;
class CSSImageValue;
-class CSSSVGDocumentValue;
+class CSSURIValue;
class CSSValue;
class ComputedStyle;
class Document;
@@ -59,7 +59,7 @@ public:
void loadPendingResources(ComputedStyle*);
- void addPendingSVGDocument(FilterOperation*, const CSSSVGDocumentValue*);
+ void addPendingSVGDocument(FilterOperation*, const CSSURIValue*);
private:
StyleImage* cursorOrPendingFromValue(CSSPropertyID, const CSSCursorImageValue&);
@@ -72,7 +72,7 @@ private:
Member<Document> m_document;
HashSet<CSSPropertyID> m_pendingImageProperties;
- HeapHashMap<Member<FilterOperation>, Member<const CSSSVGDocumentValue>> m_pendingSVGDocuments;
+ HeapHashMap<Member<FilterOperation>, Member<const CSSURIValue>> m_pendingSVGDocuments;
float m_deviceScaleFactor;
};

Powered by Google App Engine
This is Rietveld 408576698