Index: Source/core/css/CSSCursorImageValue.h |
diff --git a/Source/core/css/CSSCursorImageValue.h b/Source/core/css/CSSCursorImageValue.h |
index a94ea2bd4dff3d5dc3a1f442c8859ecc4646d6de..9e42d62ed3a8a886615fd1931eb8e85e3f3c3fc9 100644 |
--- a/Source/core/css/CSSCursorImageValue.h |
+++ b/Source/core/css/CSSCursorImageValue.h |
@@ -67,7 +67,11 @@ private: |
String cachedImageURL(); |
void clearImageResource(); |
- RefPtrWillBeMember<CSSValue> m_imageValue; |
+ // FIXME: oilpan: This should be a Member but we need to resolve |
+ // finalization order issues first. The CSSCursorImageValue |
+ // destructor uses m_imageValue. Leaving it as a RefPtr as a |
+ // workaround for now. |
+ RefPtr<CSSValue> m_imageValue; |
bool m_hasHotSpot; |
IntPoint m_hotSpot; |