| Index: sky/engine/core/frame/FrameView.cpp
|
| diff --git a/sky/engine/core/frame/FrameView.cpp b/sky/engine/core/frame/FrameView.cpp
|
| index 3f15fe02ab11c2efc4c46ea24d44514739eb06ee..853fd3577f0e9efca135a7c8f38f9c1bc896592b 100644
|
| --- a/sky/engine/core/frame/FrameView.cpp
|
| +++ b/sky/engine/core/frame/FrameView.cpp
|
| @@ -1385,11 +1385,6 @@ bool FrameView::isActive() const
|
| return page && page->focusController().isActive();
|
| }
|
|
|
| -void FrameView::scrollTo(const IntSize& newOffset)
|
| -{
|
| - // FIXME(sky): remove
|
| -}
|
| -
|
| void FrameView::invalidateScrollbarRect(Scrollbar*, const IntRect&)
|
| {
|
| // FIXME(sky): remove
|
| @@ -1713,12 +1708,7 @@ IntPoint FrameView::convertFromRenderer(const RenderObject& renderer, const IntP
|
|
|
| IntPoint FrameView::convertToRenderer(const RenderObject& renderer, const IntPoint& viewPoint) const
|
| {
|
| - IntPoint point = viewPoint;
|
| -
|
| - // Convert from FrameView coords into page ("absolute") coordinates.
|
| - point += IntSize(scrollX(), scrollY());
|
| -
|
| - return roundedIntPoint(renderer.absoluteToLocal(point, UseTransforms));
|
| + return roundedIntPoint(renderer.absoluteToLocal(viewPoint, UseTransforms));
|
| }
|
|
|
| IntRect FrameView::convertToContainingView(const IntRect& localRect) const
|
|
|