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

Unified Diff: Source/modules/accessibility/AXNodeObject.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/AXNodeObject.h
diff --git a/Source/modules/accessibility/AXNodeObject.h b/Source/modules/accessibility/AXNodeObject.h
index 21a3c06303dce6c27a9d2d24d135f18da922beae..6917f5a1a8c9ff3e99c27bb70e0ebce68ef72692 100644
--- a/Source/modules/accessibility/AXNodeObject.h
+++ b/Source/modules/accessibility/AXNodeObject.h
@@ -34,6 +34,7 @@
namespace blink {
+class AXObjectCache;
class Element;
class HTMLLabelElement;
class LayoutRect;
@@ -41,10 +42,10 @@ class Node;
class AXNodeObject : public AXObject {
protected:
- explicit AXNodeObject(Node*);
+ AXNodeObject(Node*, AXObjectCache*);
public:
- static PassRefPtr<AXNodeObject> create(Node*);
+ static PassRefPtr<AXNodeObject> create(Node*, AXObjectCache*);
virtual ~AXNodeObject();
protected:

Powered by Google App Engine
This is Rietveld 408576698