| Index: Source/core/css/CSSCursorImageValue.h
|
| diff --git a/Source/core/css/CSSCursorImageValue.h b/Source/core/css/CSSCursorImageValue.h
|
| index 8144a8b2c5c3f5bccedf53c295833406eb1ad333..50756d5e042cb15cb3c88c07cc4f24f7087826a4 100644
|
| --- a/Source/core/css/CSSCursorImageValue.h
|
| +++ b/Source/core/css/CSSCursorImageValue.h
|
| @@ -32,9 +32,9 @@ class SVGElement;
|
|
|
| class CSSCursorImageValue : public CSSValue {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSCursorImageValue> create(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
|
| + static PassRefPtr<CSSCursorImageValue> create(PassRefPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
|
| {
|
| - return adoptRefWillBeNoop(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
|
| + return adoptRef(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
|
| }
|
|
|
| ~CSSCursorImageValue();
|
| @@ -55,20 +55,18 @@ public:
|
|
|
| bool equals(const CSSCursorImageValue&) const;
|
|
|
| - DECLARE_TRACE_AFTER_DISPATCH();
|
| -
|
| private:
|
| - CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
| + CSSCursorImageValue(PassRefPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
|
|
| bool isSVGCursor() const;
|
| String cachedImageURL();
|
| void clearImageResource();
|
|
|
| - RefPtrWillBeMember<CSSValue> m_imageValue;
|
| + RefPtr<CSSValue> m_imageValue;
|
|
|
| bool m_hotSpotSpecified;
|
| IntPoint m_hotSpot;
|
| - RefPtrWillBeMember<StyleImage> m_image;
|
| + RefPtrWillBePersistent<StyleImage> m_image;
|
| bool m_accessedImage;
|
|
|
| #if !ENABLE(OILPAN)
|
|
|