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

Unified Diff: third_party/WebKit/Source/core/css/CSSImageSetValue.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, 10 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/CSSImageSetValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSImageSetValue.h b/third_party/WebKit/Source/core/css/CSSImageSetValue.h
index d9c433695455c88ad4be9b57ba3848bddb333bc7..f218a8f3627886751d9e3f5f3365444bcce842c4 100644
--- a/third_party/WebKit/Source/core/css/CSSImageSetValue.h
+++ b/third_party/WebKit/Source/core/css/CSSImageSetValue.h
@@ -39,9 +39,9 @@ class StyleImage;
class CSSImageSetValue : public CSSValueList {
public:
- static PassRefPtrWillBeRawPtr<CSSImageSetValue> create()
+ static RawPtr<CSSImageSetValue> create()
{
- return adoptRefWillBeNoop(new CSSImageSetValue());
+ return (new CSSImageSetValue());
}
~CSSImageSetValue();
@@ -58,7 +58,7 @@ public:
float scaleFactor;
};
- PassRefPtrWillBeRawPtr<CSSImageSetValue> valueWithURLsMadeAbsolute();
+ RawPtr<CSSImageSetValue> valueWithURLsMadeAbsolute();
bool hasFailedOrCanceledSubresources() const;
@@ -74,7 +74,7 @@ private:
static inline bool compareByScaleFactor(ImageWithScale first, ImageWithScale second) { return first.scaleFactor < second.scaleFactor; }
float m_cachedScaleFactor;
- RefPtrWillBeMember<StyleImage> m_cachedImage;
+ Member<StyleImage> m_cachedImage;
Vector<ImageWithScale> m_imagesInSet;
};

Powered by Google App Engine
This is Rietveld 408576698