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

Unified Diff: third_party/WebKit/Source/core/style/CursorData.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/style/CursorData.h
diff --git a/third_party/WebKit/Source/core/style/CursorData.h b/third_party/WebKit/Source/core/style/CursorData.h
index d72fa6de911ada540249e061974a62820182e6dc..b727789e6cb1b3884db7137132116c88d365dba0 100644
--- a/third_party/WebKit/Source/core/style/CursorData.h
+++ b/third_party/WebKit/Source/core/style/CursorData.h
@@ -33,7 +33,7 @@ namespace blink {
class CursorData {
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
public:
- CursorData(PassRefPtrWillBeRawPtr<StyleImage> image, bool hotSpotSpecified, const IntPoint& hotSpot)
+ CursorData(RawPtr<StyleImage> image, bool hotSpotSpecified, const IntPoint& hotSpot)
: m_image(image)
, m_hotSpotSpecified(hotSpotSpecified)
, m_hotSpot(hotSpot)
@@ -51,7 +51,7 @@ public:
}
StyleImage* image() const { return m_image.get(); }
- void setImage(PassRefPtrWillBeRawPtr<StyleImage> image) { m_image = image; }
+ void setImage(RawPtr<StyleImage> image) { m_image = image; }
bool hotSpotSpecified() const { return m_hotSpotSpecified; }
@@ -64,7 +64,7 @@ public:
}
private:
- RefPtrWillBeMember<StyleImage> m_image;
+ Member<StyleImage> m_image;
bool m_hotSpotSpecified;
IntPoint m_hotSpot; // for CSS3 support
};
« no previous file with comments | « third_party/WebKit/Source/core/style/ContentData.cpp ('k') | third_party/WebKit/Source/core/style/FillLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698