| 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 8144a8b2c5c3f5bccedf53c295833406eb1ad333..c383dd6a1fcb2c089d7b355ac5d168db999b3e45 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
|
| @@ -46,8 +46,9 @@ public:
|
| String customCSSText() const;
|
|
|
| bool updateIfSVGCursorIsUsed(Element*);
|
| - StyleImage* cachedImage(Document*, float deviceScaleFactor);
|
| - StyleImage* cachedOrPendingImage(float deviceScaleFactor);
|
| + bool isCachePending(float deviceScaleFactor) const;
|
| + StyleImage* cachedImage(float deviceScaleFactor);
|
| + StyleImage* cacheImage(Document*, float deviceScaleFactor);
|
|
|
| #if !ENABLE(OILPAN)
|
| void removeReferencedElement(SVGElement*);
|
| @@ -68,8 +69,8 @@ private:
|
|
|
| bool m_hotSpotSpecified;
|
| IntPoint m_hotSpot;
|
| - RefPtrWillBeMember<StyleImage> m_image;
|
| - bool m_accessedImage;
|
| + bool m_isCachePending;
|
| + RefPtrWillBeMember<StyleImage> m_cachedImage;
|
|
|
| #if !ENABLE(OILPAN)
|
| HashSet<SVGElement*> m_referencedElements;
|
|
|