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

Unified Diff: Source/modules/accessibility/AXARIAGridRow.h

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.h
diff --git a/Source/modules/accessibility/AXARIAGridRow.h b/Source/modules/accessibility/AXARIAGridRow.h
index 5bdbcfe2ceb1a1d0b3f1e6e975d2c93fb4d43469..60d940f6df9477bb94a2718e526dcbe8b0940e00 100644
--- a/Source/modules/accessibility/AXARIAGridRow.h
+++ b/Source/modules/accessibility/AXARIAGridRow.h
@@ -33,12 +33,15 @@
namespace blink {
+class AXObjectCache;
+
class AXARIAGridRow final : public AXTableRow {
private:
- explicit AXARIAGridRow(RenderObject*);
+ AXARIAGridRow(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXARIAGridRow> create(RenderObject*);
+ static PassRefPtr<AXARIAGridRow> create(RenderObject*, AXObjectCache*);
virtual ~AXARIAGridRow();
virtual AXObject* headerObject() override;

Powered by Google App Engine
This is Rietveld 408576698