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

Unified Diff: Source/modules/accessibility/AXARIAGrid.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/AXARIAGrid.h
diff --git a/Source/modules/accessibility/AXARIAGrid.h b/Source/modules/accessibility/AXARIAGrid.h
index 4d852cc1d0eb6d10ab4dd09eb24a5b7e1241658b..f1f699aef73a43c9277e20ac6aadfd35ee6feedc 100644
--- a/Source/modules/accessibility/AXARIAGrid.h
+++ b/Source/modules/accessibility/AXARIAGrid.h
@@ -34,11 +34,14 @@
namespace blink {
+class AXObjectCache;
+
class AXARIAGrid final : public AXTable {
private:
- explicit AXARIAGrid(RenderObject*);
+ AXARIAGrid(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXARIAGrid> create(RenderObject*);
+ static PassRefPtr<AXARIAGrid> create(RenderObject*, AXObjectCache*);
virtual ~AXARIAGrid();
virtual bool isAriaTable() const override { return true; }

Powered by Google App Engine
This is Rietveld 408576698