| Index: third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| diff --git a/third_party/WebKit/Source/platform/scroll/Scrollbar.h b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| index 6764fb0190a22bcdb26e7c71df4419739bbc1737..34c9ed1bbc664ad1e3e70f00512b08170a85ff1f 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| +++ b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| @@ -69,7 +69,7 @@ public:
|
| void getTickmarks(Vector<IntRect>&) const override;
|
| bool isScrollableAreaActive() const override;
|
|
|
| - IntPoint convertFromContainingWindow(const IntPoint& windowPoint) const override { return Widget::convertFromContainingWindow(windowPoint); }
|
| + IntPoint convertFromRootFrame(const IntPoint& pointInRootFrame) const override { return Widget::convertFromRootFrame(pointInRootFrame); }
|
|
|
| bool isCustomScrollbar() const override { return false; }
|
| ScrollbarOrientation orientation() const override { return m_orientation; }
|
| @@ -127,11 +127,11 @@ public:
|
|
|
| ScrollbarTheme* theme() const { return m_theme; }
|
|
|
| - IntRect convertToContainingView(const IntRect&) const override;
|
| - IntRect convertFromContainingView(const IntRect&) const override;
|
| + IntRect convertToContainingWidget(const IntRect&) const override;
|
| + IntRect convertFromContainingWidget(const IntRect&) const override;
|
|
|
| - IntPoint convertToContainingView(const IntPoint&) const override;
|
| - IntPoint convertFromContainingView(const IntPoint&) const override;
|
| + IntPoint convertToContainingWidget(const IntPoint&) const override;
|
| + IntPoint convertFromContainingWidget(const IntPoint&) const override;
|
|
|
| void moveThumb(int pos, bool draggingDocument = false);
|
|
|
|
|