| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h | 
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h | 
| index 043dfab6cce0108fc471d964b8010c4e45ec2e94..c3582a1fc86427b9792de8ee031412bb30cde54a 100644 | 
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h | 
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h | 
| @@ -52,9 +52,9 @@ public: | 
| bool needsReordering() const { return m_needsReordering; } | 
| Vector<SVGTextLayoutAttributes*>& layoutAttributes() { return m_layoutAttributes; } | 
|  | 
| -    void subtreeChildWasAdded(LayoutObject*); | 
| -    void subtreeChildWillBeRemoved(LayoutObject*); | 
| -    void subtreeTextDidChange(LayoutSVGInlineText*); | 
| +    void subtreeChildWasAdded(); | 
| +    void subtreeChildWillBeRemoved(); | 
| +    void subtreeTextDidChange(); | 
|  | 
| const AffineTransform& localToSVGParentTransform() const override { return m_localTransform; } | 
|  | 
| @@ -79,7 +79,7 @@ private: | 
|  | 
| RootInlineBox* createRootInlineBox() override; | 
|  | 
| -    bool shouldHandleSubtreeMutations() const; | 
| +    void invalidatePositioningValues(LayoutInvalidationReasonForTracing); | 
|  | 
| bool m_needsReordering : 1; | 
| bool m_needsPositioningValuesUpdate : 1; | 
|  |