| Index: public/web/WebAXObject.h
|
| diff --git a/public/web/WebAXObject.h b/public/web/WebAXObject.h
|
| index 336ed93a617bce65b18e7cbe558a1e2dffc0201d..b72e3cccae1adb625fd2d989f1a2b8ed54af1513 100644
|
| --- a/public/web/WebAXObject.h
|
| +++ b/public/web/WebAXObject.h
|
| @@ -32,6 +32,7 @@
|
| #define WebAXObject_h
|
|
|
| #include "../platform/WebCommon.h"
|
| +#include "../platform/WebPoint.h"
|
| #include "../platform/WebPrivatePtr.h"
|
| #include "../platform/WebVector.h"
|
| #include "WebAXEnums.h"
|
| @@ -271,6 +272,13 @@ public:
|
| BLINK_EXPORT void characterOffsets(WebVector<int>&) const;
|
| BLINK_EXPORT void wordBoundaries(WebVector<int>& starts, WebVector<int>& ends) const;
|
|
|
| + // Scrollable containers.
|
| + BLINK_EXPORT bool isScrollableContainer() const;
|
| + BLINK_EXPORT WebPoint scrollOffset() const;
|
| + BLINK_EXPORT WebPoint minimumScrollOffset() const;
|
| + BLINK_EXPORT WebPoint maximumScrollOffset() const;
|
| + BLINK_EXPORT void setScrollOffset(const WebPoint&) 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.
|
|
|