| Index: Source/modules/accessibility/AXListBoxOption.cpp
|
| diff --git a/Source/modules/accessibility/AXListBoxOption.cpp b/Source/modules/accessibility/AXListBoxOption.cpp
|
| index a46a964a8156bb531c55f8b569eb42a3891dedbd..142b5fc49fb901fed8b64b014853fac6d9cdcf4c 100644
|
| --- a/Source/modules/accessibility/AXListBoxOption.cpp
|
| +++ b/Source/modules/accessibility/AXListBoxOption.cpp
|
| @@ -39,7 +39,7 @@ namespace blink {
|
|
|
| using namespace HTMLNames;
|
|
|
| -AXListBoxOption::AXListBoxOption(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +AXListBoxOption::AXListBoxOption(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| : AXRenderObject(renderer, axObjectCache)
|
| {
|
| }
|
| @@ -48,7 +48,7 @@ AXListBoxOption::~AXListBoxOption()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXListBoxOption> AXListBoxOption::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +PassRefPtr<AXListBoxOption> AXListBoxOption::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| {
|
| return adoptRef(new AXListBoxOption(renderer, axObjectCache));
|
| }
|
|
|