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

Unified Diff: Source/modules/accessibility/AXRenderObject.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/AXRenderObject.h
diff --git a/Source/modules/accessibility/AXRenderObject.h b/Source/modules/accessibility/AXRenderObject.h
index aa4aa1e83ff826d28ea0c87f766d6d3a4a43bc0e..506632481160478aaf20d42b4d3b489c55f8d738 100644
--- a/Source/modules/accessibility/AXRenderObject.h
+++ b/Source/modules/accessibility/AXRenderObject.h
@@ -35,6 +35,7 @@
namespace blink {
+class AXObjectCache;
class AXSVGRoot;
class Element;
class FrameView;
@@ -46,9 +47,10 @@ class Widget;
class AXRenderObject : public AXNodeObject {
protected:
- explicit AXRenderObject(RenderObject*);
+ AXRenderObject(RenderObject*, AXObjectCache*);
+
public:
- static PassRefPtr<AXRenderObject> create(RenderObject*);
+ static PassRefPtr<AXRenderObject> create(RenderObject*, AXObjectCache*);
virtual ~AXRenderObject();
// Public, overridden from AXObject.

Powered by Google App Engine
This is Rietveld 408576698