Index: Source/core/css/Rect.h |
diff --git a/Source/core/css/Rect.h b/Source/core/css/Rect.h |
index 21978cd15fa9790d4bd8bc72cc93fd4b6c1148b2..9e52174bd29176271c37e8c329268699bffc4373 100644 |
--- a/Source/core/css/Rect.h |
+++ b/Source/core/css/Rect.h |
@@ -34,10 +34,10 @@ public: |
CSSPrimitiveValue* bottom() const { return m_bottom.get(); } |
CSSPrimitiveValue* left() const { return m_left.get(); } |
- void setTop(PassRefPtr<CSSPrimitiveValue> top) { m_top = top; } |
- void setRight(PassRefPtr<CSSPrimitiveValue> right) { m_right = right; } |
- void setBottom(PassRefPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } |
- void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; } |
+ void setTop(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> top) { m_top = top; } |
+ void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; } |
+ void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; } |
+ void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; } |
bool equals(const RectBase& other) const |
{ |