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

Unified Diff: Source/modules/accessibility/AXScrollbar.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/AXScrollbar.h
diff --git a/Source/modules/accessibility/AXScrollbar.h b/Source/modules/accessibility/AXScrollbar.h
index 2ad2bd15ed9bd9dbf12190dfab2d80634be28448..6a146a30acfdddc16fc435b01309782def69ce79 100644
--- a/Source/modules/accessibility/AXScrollbar.h
+++ b/Source/modules/accessibility/AXScrollbar.h
@@ -33,16 +33,17 @@
namespace blink {
+class AXObjectCache;
class Scrollbar;
class AXScrollbar final : public AXMockObject {
public:
- static PassRefPtr<AXScrollbar> create(Scrollbar*);
+ static PassRefPtr<AXScrollbar> create(Scrollbar*, AXObjectCache*);
Scrollbar* scrollbar() const { return m_scrollbar.get(); }
private:
- explicit AXScrollbar(Scrollbar*);
+ AXScrollbar(Scrollbar*, AXObjectCache*);
virtual void detachFromParent() override;

Powered by Google App Engine
This is Rietveld 408576698