| Index: third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| index e45fb1af30b130c1e9972ef923cfa00d3b4aae1c..3cd59b218e1e785ea4afc5cfb5d12c101e06d2ed 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| @@ -39,6 +39,8 @@
|
| #include "wtf/Forward.h"
|
| #include "wtf/Vector.h"
|
|
|
| +class SkMatrix44;
|
| +
|
| namespace blink {
|
|
|
| class AXObject;
|
| @@ -793,6 +795,9 @@ public:
|
| virtual void markCachedElementRectDirty() const;
|
| virtual IntPoint clickPoint();
|
|
|
| + // Transformation relative to the parent frame, if local (otherwise returns identity).
|
| + virtual SkMatrix44 transformFromLocalParentFrame() const;
|
| +
|
| // Hit testing.
|
| // Called on the root AX object to return the deepest available element.
|
| virtual AXObject* accessibilityHitTest(const IntPoint&) const { return 0; }
|
|
|