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

Unified Diff: third_party/WebKit/Source/core/css/CSSShadowValue.cpp

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.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
index 8f727289e253eb7a21247493fd1530f257f0a672..987ca5718b2fa07afafcb8f2902d2bf0198b692c 100644
--- a/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSShadowValue.cpp
@@ -26,12 +26,12 @@
namespace blink {
// Used for text-shadow and box-shadow
-CSSShadowValue::CSSShadowValue(RawPtr<CSSPrimitiveValue> x,
- RawPtr<CSSPrimitiveValue> y,
- RawPtr<CSSPrimitiveValue> blur,
- RawPtr<CSSPrimitiveValue> spread,
- RawPtr<CSSPrimitiveValue> style,
- RawPtr<CSSValue> color)
+CSSShadowValue::CSSShadowValue(CSSPrimitiveValue* x,
+ CSSPrimitiveValue* y,
+ CSSPrimitiveValue* blur,
+ CSSPrimitiveValue* spread,
+ CSSPrimitiveValue* style,
+ CSSValue* color)
: CSSValue(ShadowClass)
, x(x)
, y(y)
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.h ('k') | third_party/WebKit/Source/core/css/CSSStringValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698