| Index: third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSGradientValue.h b/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| index 0fcead9f22278a7c075c6d088f2c29242e3f89e2..19967defb305c38cd009ce57666c2c80a8889fda 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| @@ -114,6 +114,8 @@ class CSSGradientValue : public CSSImageGeneratorValue {
|
|
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| + struct GradientDesc;
|
| +
|
| protected:
|
| CSSGradientValue(ClassType classType,
|
| CSSGradientRepeat repeat,
|
| @@ -123,10 +125,10 @@ class CSSGradientValue : public CSSImageGeneratorValue {
|
| m_gradientType(gradientType),
|
| m_repeating(repeat == Repeating) {}
|
|
|
| - void addStops(Gradient*,
|
| + void addStops(GradientDesc&,
|
| const CSSToLengthConversionData&,
|
| const LayoutObject&);
|
| - void addDeprecatedStops(Gradient*, const LayoutObject&);
|
| + void addDeprecatedStops(GradientDesc&, const LayoutObject&);
|
|
|
| // Resolve points/radii to front end values.
|
| FloatPoint computeEndPoint(CSSValue*,
|
|
|