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