| Index: Source/core/css/RGBColor.h
|
| diff --git a/Source/core/css/RGBColor.h b/Source/core/css/RGBColor.h
|
| index 6ed676e233c8739b913d0b6dc1add8bcf19f76a5..5cd4697d4fb3ba9ef81dbabd7118c5a3cf5e5931 100644
|
| --- a/Source/core/css/RGBColor.h
|
| +++ b/Source/core/css/RGBColor.h
|
| @@ -38,10 +38,10 @@
|
| public:
|
| static PassRefPtr<RGBColor> create(unsigned rgbColor);
|
|
|
| - PassRefPtrWillBeRawPtr<CSSPrimitiveValue> red();
|
| - PassRefPtrWillBeRawPtr<CSSPrimitiveValue> green();
|
| - PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blue();
|
| - PassRefPtrWillBeRawPtr<CSSPrimitiveValue> alpha();
|
| + PassRefPtr<CSSPrimitiveValue> red();
|
| + PassRefPtr<CSSPrimitiveValue> green();
|
| + PassRefPtr<CSSPrimitiveValue> blue();
|
| + PassRefPtr<CSSPrimitiveValue> alpha();
|
|
|
| Color color() const { return Color(m_rgbColor); }
|
|
|
|
|