Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1163)

Unified Diff: Source/modules/accessibility/AXARIAGridCell.cpp

Issue 742353004: Implement computedRole and computedName (behind a flag) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Finished pulling out ScopedAXObjectCache etc. Many fprintfs remain. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698