| Index: third_party/WebKit/Source/core/svg/SVGLength.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGLength.h b/third_party/WebKit/Source/core/svg/SVGLength.h
|
| index 91ce36d105c12ae1e5ef30c0cc8400a4381c7e0e..089e8f8f1af11673dc44bbc561833d47806c4ba2 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGLength.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGLength.h
|
| @@ -63,7 +63,7 @@ public:
|
| m_value = CSSPrimitiveValue::create(value, m_value->typeWithCalcResolved());
|
| }
|
|
|
| - CSSPrimitiveValue* asCSSPrimitiveValue() const { return m_value.get(); }
|
| + const CSSPrimitiveValue* asCSSPrimitiveValue() const { return m_value.get(); }
|
|
|
| // Resolves LengthTypePercentage into a normalized floating point number (full value is 1.0).
|
| float valueAsPercentage() const;
|
| @@ -102,7 +102,7 @@ private:
|
| SVGLength(SVGLengthMode);
|
| SVGLength(const SVGLength&);
|
|
|
| - Member<CSSPrimitiveValue> m_value;
|
| + Member<const CSSPrimitiveValue> m_value;
|
| unsigned m_unitMode : 2;
|
| };
|
|
|
|
|