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

Unified Diff: third_party/WebKit/Source/core/css/CSSPaintValue.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/CSSPaintValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSPaintValue.h b/third_party/WebKit/Source/core/css/CSSPaintValue.h
index 3046288ef126beb1885754ffec86a943910f85dc..6aa505cc8eb521179a71dd7739608ce7e9223ead 100644
--- a/third_party/WebKit/Source/core/css/CSSPaintValue.h
+++ b/third_party/WebKit/Source/core/css/CSSPaintValue.h
@@ -13,9 +13,9 @@ namespace blink {
class CSSPaintValue : public CSSImageGeneratorValue {
public:
- static PassRefPtrWillBeRawPtr<CSSPaintValue> create(PassRefPtrWillBeRawPtr<CSSCustomIdentValue> name)
+ static RawPtr<CSSPaintValue> create(RawPtr<CSSCustomIdentValue> name)
{
- return adoptRefWillBeNoop(new CSSPaintValue(name));
+ return new CSSPaintValue(name);
}
~CSSPaintValue();
@@ -37,9 +37,9 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- explicit CSSPaintValue(PassRefPtrWillBeRawPtr<CSSCustomIdentValue> name);
+ explicit CSSPaintValue(RawPtr<CSSCustomIdentValue> name);
- RefPtrWillBeMember<CSSCustomIdentValue> m_name;
+ Member<CSSCustomIdentValue> m_name;
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSPaintValue, isPaintValue());
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPageRule.h ('k') | third_party/WebKit/Source/core/css/CSSPaintValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698