| Index: Source/core/platform/ScrollView.h
|
| diff --git a/Source/core/platform/ScrollView.h b/Source/core/platform/ScrollView.h
|
| index d80c10680f890915720c255f3ab24ed1e8b3586e..8a0371a861225b8f8b52279a14728dbde15d7c4d 100644
|
| --- a/Source/core/platform/ScrollView.h
|
| +++ b/Source/core/platform/ScrollView.h
|
| @@ -211,7 +211,7 @@ public:
|
| // For platforms that need to hit test scrollbars from within the engine's event handlers (like Win32).
|
| Scrollbar* scrollbarAtPoint(const IntPoint& windowPoint);
|
|
|
| - IntPoint convertChildToSelf(const Widget* child, const IntPoint& point) const
|
| + virtual IntPoint convertChildToSelf(const Widget* child, const IntPoint& point) const
|
| {
|
| IntPoint newPoint = point;
|
| if (!isScrollViewScrollbar(child))
|
| @@ -220,7 +220,7 @@ public:
|
| return newPoint;
|
| }
|
|
|
| - IntPoint convertSelfToChild(const Widget* child, const IntPoint& point) const
|
| + virtual IntPoint convertSelfToChild(const Widget* child, const IntPoint& point) const
|
| {
|
| IntPoint newPoint = point;
|
| if (!isScrollViewScrollbar(child))
|
| @@ -229,6 +229,9 @@ public:
|
| return newPoint;
|
| }
|
|
|
| + // A means to access the AX cache when this object can get a pointer to it.
|
| + virtual AXObjectCache* axObjectCache() const { return 0; }
|
| +
|
| // Widget override. Handles painting of the contents of the view as well as the scrollbars.
|
| virtual void paint(GraphicsContext*, const IntRect&);
|
| void paintScrollbars(GraphicsContext*, const IntRect&);
|
|
|