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

Unified Diff: Source/modules/accessibility/AXTable.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/AXTable.h
diff --git a/Source/modules/accessibility/AXTable.h b/Source/modules/accessibility/AXTable.h
index 4ea18bcae08605ede371dc2fa3d0547862513e24..9a51a63283dda0adc7395a206bfd96fa5f7102ee 100644
--- a/Source/modules/accessibility/AXTable.h
+++ b/Source/modules/accessibility/AXTable.h
@@ -34,14 +34,16 @@
namespace blink {
+class AXObjectCache;
class AXTableCell;
class AXTable : public AXRenderObject {
protected:
- explicit AXTable(RenderObject*);
+ explicit AXTable(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXTable> create(RenderObject*);
+ static PassRefPtr<AXTable> create(RenderObject*, AXObjectCache*);
virtual ~AXTable();
virtual void init() override final;

Powered by Google App Engine
This is Rietveld 408576698