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

Unified Diff: Source/modules/accessibility/AXList.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/AXList.h
diff --git a/Source/modules/accessibility/AXList.h b/Source/modules/accessibility/AXList.h
index 97134a934132f76e6b4c15fe76b335c7e85f8c74..28534788bbc0df63a2cc67ab49dcc4321a1d30a7 100644
--- a/Source/modules/accessibility/AXList.h
+++ b/Source/modules/accessibility/AXList.h
@@ -33,12 +33,15 @@
namespace blink {
+class AXObjectCache;
+
class AXList final : public AXRenderObject {
private:
- explicit AXList(RenderObject*);
+ AXList(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXList> create(RenderObject*);
+ static PassRefPtr<AXList> create(RenderObject*, AXObjectCache*);
virtual ~AXList();
virtual bool isList() const override { return true; }

Powered by Google App Engine
This is Rietveld 408576698