| 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 243fa2f63c8b6917f23fa9a3d4499ab2d79685a2..906410bc6746dec447d16c17fff25b7958216200 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;
|
| @@ -792,6 +794,9 @@ public:
|
| virtual void markCachedElementRectDirty() const;
|
| virtual IntPoint clickPoint();
|
|
|
| + // Transform relative to the local frame root.
|
| + virtual SkMatrix44 localFrameRootTransform() const;
|
| +
|
| // Hit testing.
|
| // Called on the root AX object to return the deepest available element.
|
| virtual AXObject* accessibilityHitTest(const IntPoint&) const { return 0; }
|
|
|