| Index: ui/gfx/geometry/cubic_bezier.h
|
| diff --git a/ui/gfx/geometry/cubic_bezier.h b/ui/gfx/geometry/cubic_bezier.h
|
| index 66d5e8a514012c623c3f8d9152599cd9e355183e..5a885f35db2f71e719184680ae4bbd2dcc8ec0d4 100644
|
| --- a/ui/gfx/geometry/cubic_bezier.h
|
| +++ b/ui/gfx/geometry/cubic_bezier.h
|
| @@ -26,11 +26,16 @@ class GFX_EXPORT CubicBezier {
|
| void Range(double* min, double* max) const;
|
|
|
| private:
|
| + void InitGradients();
|
| +
|
| double x1_;
|
| double y1_;
|
| double x2_;
|
| double y2_;
|
|
|
| + double start_gradient_;
|
| + double end_gradient_;
|
| +
|
| DISALLOW_ASSIGN(CubicBezier);
|
| };
|
|
|
|
|