| 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 2a9f722ba36b61d8e0b0800eabd0e72d47758d50..fd5a9eff063aaa690bc0090a698f245492046014 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
|
| +++ b/third_party/WebKit/Source/core/css/resolver/ElementStyleResources.h
|
| @@ -51,22 +51,22 @@ class ElementStyleResources {
|
| public:
|
| ElementStyleResources(Document&, float deviceScaleFactor);
|
|
|
| - RawPtr<StyleImage> styleImage(CSSPropertyID, const CSSValue&);
|
| - RawPtr<StyleImage> cachedOrPendingFromValue(CSSPropertyID, const CSSImageValue&);
|
| - RawPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, const CSSImageSetValue&);
|
| + StyleImage* styleImage(CSSPropertyID, const CSSValue&);
|
| + StyleImage* cachedOrPendingFromValue(CSSPropertyID, const CSSImageValue&);
|
| + StyleImage* setOrPendingFromValue(CSSPropertyID, const CSSImageSetValue&);
|
|
|
| void loadPendingResources(ComputedStyle*);
|
|
|
| void addPendingSVGDocument(FilterOperation*, CSSSVGDocumentValue*);
|
|
|
| private:
|
| - RawPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, const CSSCursorImageValue&);
|
| - RawPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, const CSSImageGeneratorValue&);
|
| + StyleImage* cursorOrPendingFromValue(CSSPropertyID, const CSSCursorImageValue&);
|
| + StyleImage* generatedOrPendingFromValue(CSSPropertyID, const CSSImageGeneratorValue&);
|
|
|
| void loadPendingSVGDocuments(ComputedStyle*);
|
| void loadPendingImages(ComputedStyle*);
|
|
|
| - RawPtr<StyleImage> loadPendingImage(StylePendingImage*, CrossOriginAttributeValue = CrossOriginAttributeNotSet);
|
| + StyleImage* loadPendingImage(StylePendingImage*, CrossOriginAttributeValue = CrossOriginAttributeNotSet);
|
|
|
| Member<Document> m_document;
|
| HashSet<CSSPropertyID> m_pendingImageProperties;
|
|
|