| Index: Source/modules/accessibility/AXSVGRoot.cpp
|
| diff --git a/Source/modules/accessibility/AXSVGRoot.cpp b/Source/modules/accessibility/AXSVGRoot.cpp
|
| index 871c7056274086ef0a6135f3fa650e427cb5c20b..457cb97a57fc624c31aa13faa3c4d93b06d7ae3b 100644
|
| --- a/Source/modules/accessibility/AXSVGRoot.cpp
|
| +++ b/Source/modules/accessibility/AXSVGRoot.cpp
|
| @@ -33,7 +33,7 @@
|
|
|
| namespace blink {
|
|
|
| -AXSVGRoot::AXSVGRoot(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +AXSVGRoot::AXSVGRoot(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| : AXRenderObject(renderer, axObjectCache)
|
| {
|
| }
|
| @@ -42,7 +42,7 @@ AXSVGRoot::~AXSVGRoot()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXSVGRoot> AXSVGRoot::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +PassRefPtr<AXSVGRoot> AXSVGRoot::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| {
|
| return adoptRef(new AXSVGRoot(renderer, axObjectCache));
|
| }
|
|
|