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

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

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/CSSRuleList.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 ac7cb34d8c3ef16ed578e2a6f4a6f09c59efd010..c7eb172340d655915f10f5592783fd8235e00783 100644
--- a/third_party/WebKit/Source/core/css/CSSReflectValue.h
+++ b/third_party/WebKit/Source/core/css/CSSReflectValue.h
@@ -36,8 +36,8 @@ class CSSPrimitiveValue;
class CSSReflectValue : public CSSValue {
public:
- static RawPtr<CSSReflectValue> create(RawPtr<CSSPrimitiveValue> direction,
- RawPtr<CSSPrimitiveValue> offset, RawPtr<CSSValue> mask)
+ static CSSReflectValue* create(CSSPrimitiveValue* direction,
+ CSSPrimitiveValue* offset, CSSValue* mask)
{
return new CSSReflectValue(direction, offset, mask);
}
@@ -53,7 +53,7 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSReflectValue(RawPtr<CSSPrimitiveValue> direction, RawPtr<CSSPrimitiveValue> offset, RawPtr<CSSValue> mask)
+ CSSReflectValue(CSSPrimitiveValue* direction, CSSPrimitiveValue* offset, CSSValue* mask)
: CSSValue(ReflectClass)
, m_direction(direction)
, m_offset(offset)
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSQuadValue.h ('k') | third_party/WebKit/Source/core/css/CSSRuleList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698