| Index: Source/modules/accessibility/AXTableRow.cpp
|
| diff --git a/Source/modules/accessibility/AXTableRow.cpp b/Source/modules/accessibility/AXTableRow.cpp
|
| index be62492da3a0785f1956fbfaa21d6248737b4d53..85e70197777c0cc5aadd7e01c3956ee84eaa1d42 100644
|
| --- a/Source/modules/accessibility/AXTableRow.cpp
|
| +++ b/Source/modules/accessibility/AXTableRow.cpp
|
| @@ -38,7 +38,7 @@ namespace blink {
|
|
|
| using namespace HTMLNames;
|
|
|
| -AXTableRow::AXTableRow(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
|
| +AXTableRow::AXTableRow(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| : AXLayoutObject(layoutObject, axObjectCache)
|
| {
|
| }
|
| @@ -47,7 +47,7 @@ AXTableRow::~AXTableRow()
|
| {
|
| }
|
|
|
| -PassRefPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
|
| +PassRefPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
|
| {
|
| return adoptRef(new AXTableRow(layoutObject, axObjectCache));
|
| }
|
|
|