| Index: Source/modules/accessibility/AXMenuList.h
|
| diff --git a/Source/modules/accessibility/AXMenuList.h b/Source/modules/accessibility/AXMenuList.h
|
| index 83433fa33d721763449d3eaad0e93bee2c8874d8..a82d365f41cb7e1ca97c86ead0b0a86a290533e3 100644
|
| --- a/Source/modules/accessibility/AXMenuList.h
|
| +++ b/Source/modules/accessibility/AXMenuList.h
|
| @@ -30,11 +30,12 @@
|
|
|
| namespace blink {
|
|
|
| +class AXObjectCache;
|
| class RenderMenuList;
|
|
|
| class AXMenuList final : public AXRenderObject {
|
| public:
|
| - static PassRefPtr<AXMenuList> create(RenderMenuList* renderer);
|
| + static PassRefPtr<AXMenuList> create(RenderMenuList* renderer, AXObjectCache*);
|
|
|
| virtual bool isCollapsed() const override;
|
| virtual AccessibilityExpanded isExpanded() const override final;
|
| @@ -43,7 +44,7 @@ public:
|
| void didUpdateActiveOption(int optionIndex);
|
|
|
| private:
|
| - explicit AXMenuList(RenderMenuList*);
|
| + AXMenuList(RenderMenuList*, AXObjectCache*);
|
|
|
| virtual bool isMenuList() const override { return true; }
|
| virtual AccessibilityRole roleValue() const override { return PopUpButtonRole; }
|
|
|