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

Unified Diff: Source/modules/accessibility/AXListBox.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/AXListBox.h
diff --git a/Source/modules/accessibility/AXListBox.h b/Source/modules/accessibility/AXListBox.h
index f28a00c9e738c5088d1f19773e6575f036420ed3..0b20e507289c32eb36dc6060a7cdef5f9ddd47da 100644
--- a/Source/modules/accessibility/AXListBox.h
+++ b/Source/modules/accessibility/AXListBox.h
@@ -33,12 +33,15 @@
namespace blink {
+class AXObjectCache;
+
class AXListBox final : public AXRenderObject {
private:
- explicit AXListBox(RenderObject*);
+ AXListBox(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXListBox> create(RenderObject*);
+ static PassRefPtr<AXListBox> create(RenderObject*, AXObjectCache*);
virtual ~AXListBox();
virtual AccessibilityRole roleValue() const override { return ListBoxRole; }

Powered by Google App Engine
This is Rietveld 408576698