Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Unified Diff: Source/core/css/CSSCursorImageValue.h

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSCrossfadeValue.cpp ('k') | Source/core/css/CSSCursorImageValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCursorImageValue.h
diff --git a/Source/core/css/CSSCursorImageValue.h b/Source/core/css/CSSCursorImageValue.h
index 8144a8b2c5c3f5bccedf53c295833406eb1ad333..50756d5e042cb15cb3c88c07cc4f24f7087826a4 100644
--- a/Source/core/css/CSSCursorImageValue.h
+++ b/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 PassRefPtr<CSSCursorImageValue> create(PassRefPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
{
- return adoptRefWillBeNoop(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
+ return adoptRef(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
}
~CSSCursorImageValue();
@@ -55,20 +55,18 @@ public:
bool equals(const CSSCursorImageValue&) const;
- DECLARE_TRACE_AFTER_DISPATCH();
-
private:
- CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
+ CSSCursorImageValue(PassRefPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
bool isSVGCursor() const;
String cachedImageURL();
void clearImageResource();
- RefPtrWillBeMember<CSSValue> m_imageValue;
+ RefPtr<CSSValue> m_imageValue;
bool m_hotSpotSpecified;
IntPoint m_hotSpot;
- RefPtrWillBeMember<StyleImage> m_image;
+ RefPtrWillBePersistent<StyleImage> m_image;
bool m_accessedImage;
#if !ENABLE(OILPAN)
« no previous file with comments | « Source/core/css/CSSCrossfadeValue.cpp ('k') | Source/core/css/CSSCursorImageValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698