| Index: third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCursorImageValue.h b/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| index d68685b8ed7d4100a3ea6936743791000462534c..e1e8570b242eb6efa48a75666f116a5f072d53f6 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| +++ b/third_party/WebKit/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 RawPtr<CSSCursorImageValue> create(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
|
| {
|
| - return adoptRefWillBeNoop(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
|
| + return new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot);
|
| }
|
|
|
| ~CSSCursorImageValue();
|
| @@ -59,18 +59,18 @@ public:
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| - CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
| + CSSCursorImageValue(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
|
|
| bool isSVGCursor() const;
|
| String cachedImageURL();
|
| void clearImageResource();
|
|
|
| - RefPtrWillBeMember<CSSValue> m_imageValue;
|
| + Member<CSSValue> m_imageValue;
|
|
|
| bool m_hotSpotSpecified;
|
| IntPoint m_hotSpot;
|
| bool m_isCachePending;
|
| - RefPtrWillBeMember<StyleImage> m_cachedImage;
|
| + Member<StyleImage> m_cachedImage;
|
|
|
| #if !ENABLE(OILPAN)
|
| HashSet<SVGElement*> m_referencedElements;
|
|
|