Index: Source/modules/accessibility/AXARIAGridCell.cpp |
diff --git a/Source/modules/accessibility/AXARIAGridCell.cpp b/Source/modules/accessibility/AXARIAGridCell.cpp |
index 02376649e7cbe13a8affb49e0706dc56f4300dcb..7d466bc6aa4cc6f08716a04dccd0c68d123d03f3 100644 |
--- a/Source/modules/accessibility/AXARIAGridCell.cpp |
+++ b/Source/modules/accessibility/AXARIAGridCell.cpp |
@@ -29,14 +29,15 @@ |
#include "config.h" |
#include "modules/accessibility/AXARIAGridCell.h" |
+#include "core/dom/AXObjectCache.h" |
#include "modules/accessibility/AXTable.h" |
#include "modules/accessibility/AXTableRow.h" |
namespace blink { |
-AXARIAGridCell::AXARIAGridCell(RenderObject* renderer) |
- : AXTableCell(renderer) |
+AXARIAGridCell::AXARIAGridCell(RenderObject* renderer, AXObjectCache* axObjectCache) |
+ : AXTableCell(renderer, axObjectCache) |
{ |
} |
@@ -44,9 +45,9 @@ AXARIAGridCell::~AXARIAGridCell() |
{ |
} |
-PassRefPtr<AXARIAGridCell> AXARIAGridCell::create(RenderObject* renderer) |
+PassRefPtr<AXARIAGridCell> AXARIAGridCell::create(RenderObject* renderer, AXObjectCache* axObjectCache) |
{ |
- return adoptRef(new AXARIAGridCell(renderer)); |
+ return adoptRef(new AXARIAGridCell(renderer, axObjectCache)); |
} |
AXObject* AXARIAGridCell::parentTable() const |