| Index: Source/modules/accessibility/AXSVGRoot.cpp
|
| diff --git a/Source/modules/accessibility/AXSVGRoot.cpp b/Source/modules/accessibility/AXSVGRoot.cpp
|
| index b7706741f3784b597e1ccdc1462d8776f8359baf..3ff6f9698b4ede2c70d7cd158bde2354537e1924 100644
|
| --- a/Source/modules/accessibility/AXSVGRoot.cpp
|
| +++ b/Source/modules/accessibility/AXSVGRoot.cpp
|
| @@ -42,9 +42,9 @@ AXSVGRoot::~AXSVGRoot()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXSVGRoot> AXSVGRoot::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| +PassRefPtrWillBeRawPtr<AXSVGRoot> AXSVGRoot::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| - return adoptRef(new AXSVGRoot(layoutObject, axObjectCache));
|
| + return adoptRefWillBeNoop(new AXSVGRoot(layoutObject, axObjectCache));
|
| }
|
|
|
| void AXSVGRoot::setParent(AXObject* parent)
|
|
|