| Index: third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
|
| index 9ed58ede38bda12e1b97f4d7022adba62a1419fe..f6dcd76752eb93b214551de67612c452845475ba 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
|
| @@ -19,7 +19,7 @@ namespace blink {
|
| // or the wrapped object and forwards the operation to it.)
|
| class SVGAnimatedHref final : public SVGAnimatedString {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedHref> create(SVGElement* contextElement);
|
| + static RawPtr<SVGAnimatedHref> create(SVGElement* contextElement);
|
|
|
| SVGString* currentValue();
|
| const SVGString* currentValue() const;
|
| @@ -42,7 +42,7 @@ private:
|
| const SVGAnimatedString* backingString() const;
|
| bool useXLink() const;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedString> m_xlinkHref;
|
| + Member<SVGAnimatedString> m_xlinkHref;
|
| };
|
|
|
| } // namespace blink
|
|
|