Index: third_party/WebKit/Source/core/animation/PropertyHandle.h |
diff --git a/third_party/WebKit/Source/core/animation/PropertyHandle.h b/third_party/WebKit/Source/core/animation/PropertyHandle.h |
index bb6b501c918275a154de5f0c0ba4ee06d84d3ff0..e8a784e4cb34071f0d55b439ab619ed49de93efd 100644 |
--- a/third_party/WebKit/Source/core/animation/PropertyHandle.h |
+++ b/third_party/WebKit/Source/core/animation/PropertyHandle.h |
@@ -37,7 +37,7 @@ public: |
CSSPropertyID cssProperty() const { ASSERT(isCSSProperty()); return property; } |
bool isSVGAttribute() const { return handleType == HandleSVGAttribute; } |
- const QualifiedName* svgAttribute() const { ASSERT(isSVGAttribute()); return attribute; } |
+ const QualifiedName& svgAttribute() const { ASSERT(isSVGAttribute()); return *attribute; } |
private: |
enum HandleType { |