| Index: Source/modules/accessibility/AXListBox.cpp
|
| diff --git a/Source/modules/accessibility/AXListBox.cpp b/Source/modules/accessibility/AXListBox.cpp
|
| index 273625027b1a8c7fe3538fc19f8d15fbfffc60c1..90fc94c7111b271b2ffd8a99d584f8c6c5cb5fdf 100644
|
| --- a/Source/modules/accessibility/AXListBox.cpp
|
| +++ b/Source/modules/accessibility/AXListBox.cpp
|
| @@ -37,7 +37,7 @@ namespace blink {
|
|
|
| using namespace HTMLNames;
|
|
|
| -AXListBox::AXListBox(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +AXListBox::AXListBox(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| : AXRenderObject(renderer, axObjectCache)
|
| {
|
| }
|
| @@ -46,7 +46,7 @@ AXListBox::~AXListBox()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXListBox> AXListBox::create(RenderObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| +PassRefPtr<AXListBox> AXListBox::create(LayoutObject* renderer, AXObjectCacheImpl* axObjectCache)
|
| {
|
| return adoptRef(new AXListBox(renderer, axObjectCache));
|
| }
|
|
|