Index: Source/core/css/CSSShadowValue.cpp |
diff --git a/Source/core/css/CSSShadowValue.cpp b/Source/core/css/CSSShadowValue.cpp |
index aee4a7ae3d2c5843cfd805e303364044954036a7..4bdecf5ec102d8d10f580bf275c834a6c349154c 100644 |
--- a/Source/core/css/CSSShadowValue.cpp |
+++ b/Source/core/css/CSSShadowValue.cpp |
@@ -27,12 +27,12 @@ |
namespace WebCore { |
// Used for text-shadow and box-shadow |
-CSSShadowValue::CSSShadowValue(PassRefPtr<CSSPrimitiveValue> x, |
- PassRefPtr<CSSPrimitiveValue> y, |
- PassRefPtr<CSSPrimitiveValue> blur, |
- PassRefPtr<CSSPrimitiveValue> spread, |
- PassRefPtr<CSSPrimitiveValue> style, |
- PassRefPtr<CSSPrimitiveValue> color) |
+CSSShadowValue::CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y, |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur, |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread, |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style, |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color) |
: CSSValue(ShadowClass) |
, x(x) |
, y(y) |
@@ -90,6 +90,12 @@ bool CSSShadowValue::equals(const CSSShadowValue& other) const |
void CSSShadowValue::traceAfterDispatch(Visitor* visitor) |
{ |
+ visitor->trace(x); |
+ visitor->trace(y); |
+ visitor->trace(blur); |
+ visitor->trace(spread); |
+ visitor->trace(style); |
+ visitor->trace(color); |
CSSValue::traceAfterDispatch(visitor); |
} |