| Index: Source/modules/accessibility/AXList.cpp
|
| diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
|
| index 06c759e7400cbc87e96e3e5b7d110b8a8e671b4c..ffb8546ea782643b24b1760517281a652666ce81 100644
|
| --- a/Source/modules/accessibility/AXList.cpp
|
| +++ b/Source/modules/accessibility/AXList.cpp
|
| @@ -37,7 +37,7 @@ namespace blink {
|
|
|
| using namespace HTMLNames;
|
|
|
| -AXList::AXList(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
|
| +AXList::AXList(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| : AXLayoutObject(layoutObject, axObjectCache)
|
| {
|
| }
|
| @@ -46,7 +46,7 @@ AXList::~AXList()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
|
| +PassRefPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| return adoptRef(new AXList(layoutObject, axObjectCache));
|
| }
|
|
|