Index: Source/core/svg/LinearGradientAttributes.h |
diff --git a/Source/core/svg/LinearGradientAttributes.h b/Source/core/svg/LinearGradientAttributes.h |
index f10e8aa4bd15f3779111e408a423015658bd4ead..79e442a1a083f57351c8710a6dad74eb33576b00 100644 |
--- a/Source/core/svg/LinearGradientAttributes.h |
+++ b/Source/core/svg/LinearGradientAttributes.h |
@@ -29,10 +29,10 @@ struct LinearGradientAttributes : GradientAttributes { |
DISALLOW_ALLOCATION(); |
public: |
LinearGradientAttributes() |
- : m_x1(SVGLength::create(LengthModeWidth)) |
- , m_y1(SVGLength::create(LengthModeWidth)) |
- , m_x2(SVGLength::create(LengthModeWidth)) |
- , m_y2(SVGLength::create(LengthModeWidth)) |
+ : m_x1(SVGLength::create(SVGLengthMode::Width)) |
+ , m_y1(SVGLength::create(SVGLengthMode::Height)) |
+ , m_x2(SVGLength::create(SVGLengthMode::Width)) |
+ , m_y2(SVGLength::create(SVGLengthMode::Height)) |
, m_x1Set(false) |
, m_y1Set(false) |
, m_x2Set(false) |