| 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 e1e8570b242eb6efa48a75666f116a5f072d53f6..7e0f2b3a7ccdbcb22258841caf3db201d3493a77 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| @@ -32,7 +32,7 @@ class SVGElement;
|
|
|
| class CSSCursorImageValue : public CSSValue {
|
| public:
|
| - static RawPtr<CSSCursorImageValue> create(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
|
| + static CSSCursorImageValue* create(CSSValue* imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
|
| {
|
| return new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot);
|
| }
|
| @@ -59,7 +59,7 @@ public:
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| - CSSCursorImageValue(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
| + CSSCursorImageValue(CSSValue* imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
|
|
|
| bool isSVGCursor() const;
|
| String cachedImageURL();
|
|
|