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

Unified Diff: third_party/WebKit/Source/core/css/CSSReflectValue.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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSQuadValue.h ('k') | third_party/WebKit/Source/core/css/CSSRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSReflectValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSReflectValue.h b/third_party/WebKit/Source/core/css/CSSReflectValue.h
index 18569543adc4084aa81e53a4dbac803c347fd59a..ac7cb34d8c3ef16ed578e2a6f4a6f09c59efd010 100644
--- a/third_party/WebKit/Source/core/css/CSSReflectValue.h
+++ b/third_party/WebKit/Source/core/css/CSSReflectValue.h
@@ -36,10 +36,10 @@ class CSSPrimitiveValue;
class CSSReflectValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSReflectValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> direction,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> offset, PassRefPtrWillBeRawPtr<CSSValue> mask)
+ static RawPtr<CSSReflectValue> create(RawPtr<CSSPrimitiveValue> direction,
+ RawPtr<CSSPrimitiveValue> offset, RawPtr<CSSValue> mask)
{
- return adoptRefWillBeNoop(new CSSReflectValue(direction, offset, mask));
+ return new CSSReflectValue(direction, offset, mask);
}
CSSPrimitiveValue* direction() const { return m_direction.get(); }
@@ -53,7 +53,7 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSReflectValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> direction, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> offset, PassRefPtrWillBeRawPtr<CSSValue> mask)
+ CSSReflectValue(RawPtr<CSSPrimitiveValue> direction, RawPtr<CSSPrimitiveValue> offset, RawPtr<CSSValue> mask)
: CSSValue(ReflectClass)
, m_direction(direction)
, m_offset(offset)
@@ -61,9 +61,9 @@ private:
{
}
- RefPtrWillBeMember<CSSPrimitiveValue> m_direction;
- RefPtrWillBeMember<CSSPrimitiveValue> m_offset;
- RefPtrWillBeMember<CSSValue> m_mask;
+ Member<CSSPrimitiveValue> m_direction;
+ Member<CSSPrimitiveValue> m_offset;
+ Member<CSSValue> m_mask;
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSReflectValue, isReflectValue());
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSQuadValue.h ('k') | third_party/WebKit/Source/core/css/CSSRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698