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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 d68685b8ed7d4100a3ea6936743791000462534c..e1e8570b242eb6efa48a75666f116a5f072d53f6 100644
--- a/third_party/WebKit/Source/core/css/CSSCursorImageValue.h
+++ b/third_party/WebKit/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 RawPtr<CSSCursorImageValue> create(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot)
{
- return adoptRefWillBeNoop(new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot));
+ return new CSSCursorImageValue(imageValue, hotSpotSpecified, hotSpot);
}
~CSSCursorImageValue();
@@ -59,18 +59,18 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
+ CSSCursorImageValue(RawPtr<CSSValue> imageValue, bool hotSpotSpecified, const IntPoint& hotSpot);
bool isSVGCursor() const;
String cachedImageURL();
void clearImageResource();
- RefPtrWillBeMember<CSSValue> m_imageValue;
+ Member<CSSValue> m_imageValue;
bool m_hotSpotSpecified;
IntPoint m_hotSpot;
bool m_isCachePending;
- RefPtrWillBeMember<StyleImage> m_cachedImage;
+ Member<StyleImage> m_cachedImage;
#if !ENABLE(OILPAN)
HashSet<SVGElement*> m_referencedElements;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698