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

Unified Diff: Source/modules/accessibility/AXARIAGridRow.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/AXARIAGridRow.cpp
diff --git a/Source/modules/accessibility/AXARIAGridRow.cpp b/Source/modules/accessibility/AXARIAGridRow.cpp
index af2d79d2c6faa715b0d83100753378eee3ede4f4..e3391f7ae838294ed2bda5f8aea7b07826bbb3f3 100644
--- a/Source/modules/accessibility/AXARIAGridRow.cpp
+++ b/Source/modules/accessibility/AXARIAGridRow.cpp
@@ -29,13 +29,14 @@
#include "config.h"
#include "modules/accessibility/AXARIAGridRow.h"
+#include "core/dom/AXObjectCache.h"
#include "modules/accessibility/AXTable.h"
namespace blink {
-AXARIAGridRow::AXARIAGridRow(RenderObject* renderer)
- : AXTableRow(renderer)
+AXARIAGridRow::AXARIAGridRow(RenderObject* renderer, AXObjectCache* axObjectCache)
+ : AXTableRow(renderer, axObjectCache)
{
}
@@ -43,9 +44,9 @@ AXARIAGridRow::~AXARIAGridRow()
{
}
-PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(RenderObject* renderer)
+PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(RenderObject* renderer, AXObjectCache* axObjectCache)
{
- return adoptRef(new AXARIAGridRow(renderer));
+ return adoptRef(new AXARIAGridRow(renderer, axObjectCache));
}
bool AXARIAGridRow::isARIATreeGridRow() const

Powered by Google App Engine
This is Rietveld 408576698