| Index: third_party/WebKit/public/web/WebAXObject.h
|
| diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
|
| index f0051c1678a9b4c77d1a3e1cba807c77dfe6a794..a445c0f2012408490cb86ebcd9c9cd089df368bb 100644
|
| --- a/third_party/WebKit/public/web/WebAXObject.h
|
| +++ b/third_party/WebKit/public/web/WebAXObject.h
|
| @@ -42,6 +42,8 @@
|
| namespace WTF { template <typename T> class PassRefPtr; }
|
| #endif
|
|
|
| +class SkMatrix44;
|
| +
|
| namespace blink {
|
|
|
| class AXObject;
|
| @@ -281,6 +283,9 @@ public:
|
| BLINK_EXPORT WebPoint maximumScrollOffset() const;
|
| BLINK_EXPORT void setScrollOffset(const WebPoint&) const;
|
|
|
| + // Transformation relative to the parent frame, if local (otherwise returns identity).
|
| + BLINK_EXPORT SkMatrix44 transformFromLocalParentFrame() const;
|
| +
|
| // Make this object visible by scrolling as many nested scrollable views as needed.
|
| BLINK_EXPORT void scrollToMakeVisible() const;
|
| // Same, but if the whole object can't be made visible, try for this subrect, in local coordinates.
|
|
|