| Index: Source/modules/accessibility/AXMenuListOption.h
|
| diff --git a/Source/modules/accessibility/AXMenuListOption.h b/Source/modules/accessibility/AXMenuListOption.h
|
| index 87666a2cebd9c1269267fdadd83ffb3934d2d54f..6b53cc6a92cd182d4ca12a6d4513f20a732bfde3 100644
|
| --- a/Source/modules/accessibility/AXMenuListOption.h
|
| +++ b/Source/modules/accessibility/AXMenuListOption.h
|
| @@ -30,16 +30,17 @@
|
|
|
| namespace blink {
|
|
|
| +class AXObjectCache;
|
| class HTMLElement;
|
|
|
| class AXMenuListOption final : public AXMockObject {
|
| public:
|
| - static PassRefPtr<AXMenuListOption> create() { return adoptRef(new AXMenuListOption); }
|
| + static PassRefPtr<AXMenuListOption> create(AXObjectCache* axObjectCache) { return adoptRef(new AXMenuListOption(axObjectCache)); }
|
|
|
| void setElement(HTMLElement*);
|
|
|
| private:
|
| - AXMenuListOption();
|
| + explicit AXMenuListOption(AXObjectCache*);
|
|
|
| virtual bool isMenuListOption() const override { return true; }
|
|
|
|
|