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

Unified Diff: Source/modules/accessibility/AXListBoxOption.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/AXListBoxOption.h
diff --git a/Source/modules/accessibility/AXListBoxOption.h b/Source/modules/accessibility/AXListBoxOption.h
index b9f144057cedfc0714a468d10ed13eaf39b2b475..e3e067a9e869f46c487677fe7d0915cf3c708657 100644
--- a/Source/modules/accessibility/AXListBoxOption.h
+++ b/Source/modules/accessibility/AXListBoxOption.h
@@ -35,14 +35,16 @@
namespace blink {
+class AXObjectCache;
class HTMLSelectElement;
class AXListBoxOption final : public AXRenderObject {
private:
- AXListBoxOption(RenderObject*);
+ AXListBoxOption(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXListBoxOption> create(RenderObject*);
+ static PassRefPtr<AXListBoxOption> create(RenderObject*, AXObjectCache*);
virtual ~AXListBoxOption();
virtual AccessibilityRole roleValue() const override { return ListBoxOptionRole; }

Powered by Google App Engine
This is Rietveld 408576698