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

Unified Diff: Source/modules/accessibility/AXInlineTextBox.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/AXInlineTextBox.h
diff --git a/Source/modules/accessibility/AXInlineTextBox.h b/Source/modules/accessibility/AXInlineTextBox.h
index a3c291fc3d79d5e2810a757f1662c5a7d8160388..1286eb8b9ef9e1e2bc68a4689e6bba9faf5e7515 100644
--- a/Source/modules/accessibility/AXInlineTextBox.h
+++ b/Source/modules/accessibility/AXInlineTextBox.h
@@ -34,13 +34,15 @@
namespace blink {
+class AXObjectCache;
+
class AXInlineTextBox final : public AXObject {
private:
- AXInlineTextBox(PassRefPtr<AbstractInlineTextBox>);
+ AXInlineTextBox(PassRefPtr<AbstractInlineTextBox>, AXObjectCache*);
public:
- static PassRefPtr<AXInlineTextBox> create(PassRefPtr<AbstractInlineTextBox>);
+ static PassRefPtr<AXInlineTextBox> create(PassRefPtr<AbstractInlineTextBox>, AXObjectCache*);
virtual ~AXInlineTextBox();
virtual void init() override;
@@ -58,7 +60,6 @@ public:
private:
RefPtr<AbstractInlineTextBox> m_inlineTextBox;
- AXObjectCacheImpl* m_axObjectCache;
virtual bool computeAccessibilityIsIgnored() const override;
};

Powered by Google App Engine
This is Rietveld 408576698