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

Unified Diff: Source/modules/accessibility/AXARIAGridCell.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/AXARIAGridCell.h
diff --git a/Source/modules/accessibility/AXARIAGridCell.h b/Source/modules/accessibility/AXARIAGridCell.h
index ab9c4d1ae9f3c1806f48ed9acb0060aeb392c145..54b790b40c93714c4e78c5845063cda644fbc267 100644
--- a/Source/modules/accessibility/AXARIAGridCell.h
+++ b/Source/modules/accessibility/AXARIAGridCell.h
@@ -33,12 +33,15 @@
namespace blink {
+class AXObjectCache;
+
class AXARIAGridCell final : public AXTableCell {
private:
- explicit AXARIAGridCell(RenderObject*);
+ explicit AXARIAGridCell(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXARIAGridCell> create(RenderObject*);
+ static PassRefPtr<AXARIAGridCell> create(RenderObject*, AXObjectCache*);
virtual ~AXARIAGridCell();
// fills in the start location and row span of cell

Powered by Google App Engine
This is Rietveld 408576698