| Index: Source/core/animation/CSSValueInterpolationType.h
|
| diff --git a/Source/core/animation/CSSValueInterpolationType.h b/Source/core/animation/CSSValueInterpolationType.h
|
| index 82c12a54ec7992580f9bd74fe26391da1e2b7c56..1a4b9dd55cf55a718eee7495fdb4a9023c2974aa 100644
|
| --- a/Source/core/animation/CSSValueInterpolationType.h
|
| +++ b/Source/core/animation/CSSValueInterpolationType.h
|
| @@ -24,12 +24,12 @@ public:
|
| class DefaultNonInterpolableValue : public NonInterpolableValue {
|
| public:
|
| virtual ~DefaultNonInterpolableValue() { }
|
| - static PassRefPtrWillBeRawPtr<DefaultNonInterpolableValue> create(CSSValue cssValue)
|
| + static PassRefPtrWillBeRawPtr<DefaultNonInterpolableValue> create(const CSSValue& cssValue)
|
| {
|
| return adoptRefWillBeNoop(new DefaultNonInterpolableValue(cssValue));
|
| }
|
|
|
| - CSSValue cssValue() const { return m_cssValue; }
|
| + const CSSValue& cssValue() const { return m_cssValue; }
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| @@ -40,7 +40,7 @@ public:
|
| DECLARE_NON_INTERPOLABLE_VALUE_TYPE();
|
|
|
| private:
|
| - DefaultNonInterpolableValue(CSSValue cssValue)
|
| + DefaultNonInterpolableValue(const CSSValue& cssValue)
|
| : m_cssValue(cssValue)
|
| { }
|
|
|
|
|