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

Unified Diff: third_party/WebKit/Source/core/css/CSSShadowValue.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
Index: third_party/WebKit/Source/core/css/CSSShadowValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSShadowValue.h b/third_party/WebKit/Source/core/css/CSSShadowValue.h
index 908e16331f2dc5f818af2477ee0a0e7d33e3066d..66a6e82ad24c6fcda0d299f1afa87753eeba021d 100644
--- a/third_party/WebKit/Source/core/css/CSSShadowValue.h
+++ b/third_party/WebKit/Source/core/css/CSSShadowValue.h
@@ -33,12 +33,12 @@ class CSSPrimitiveValue;
// Used for text-shadow and box-shadow
class CORE_EXPORT CSSShadowValue : public CSSValue {
public:
- static RawPtr<CSSShadowValue> create(RawPtr<CSSPrimitiveValue> x,
- RawPtr<CSSPrimitiveValue> y,
- RawPtr<CSSPrimitiveValue> blur,
- RawPtr<CSSPrimitiveValue> spread,
- RawPtr<CSSPrimitiveValue> style,
- RawPtr<CSSValue> color)
+ static CSSShadowValue* create(CSSPrimitiveValue* x,
+ CSSPrimitiveValue* y,
+ CSSPrimitiveValue* blur,
+ CSSPrimitiveValue* spread,
+ CSSPrimitiveValue* style,
+ CSSValue* color)
{
return new CSSShadowValue(x, y, blur, spread, style, color);
}
@@ -57,12 +57,12 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSShadowValue(RawPtr<CSSPrimitiveValue> x,
- RawPtr<CSSPrimitiveValue> y,
- RawPtr<CSSPrimitiveValue> blur,
- RawPtr<CSSPrimitiveValue> spread,
- RawPtr<CSSPrimitiveValue> style,
- RawPtr<CSSValue> color);
+ CSSShadowValue(CSSPrimitiveValue* x,
+ CSSPrimitiveValue* y,
+ CSSPrimitiveValue* blur,
+ CSSPrimitiveValue* spread,
+ CSSPrimitiveValue* style,
+ CSSValue* color);
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSShadowValue, isShadowValue());
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp ('k') | third_party/WebKit/Source/core/css/CSSShadowValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698