| Index: sky/engine/web/WebViewImpl.cpp
|
| diff --git a/sky/engine/web/WebViewImpl.cpp b/sky/engine/web/WebViewImpl.cpp
|
| index 84e1b653a98a169ff83df7f1823f4e3dd7885bd9..d5e71577ddc02843231932f7440e996bbc7d6d1d 100644
|
| --- a/sky/engine/web/WebViewImpl.cpp
|
| +++ b/sky/engine/web/WebViewImpl.cpp
|
| @@ -74,7 +74,6 @@
|
| #include "sky/engine/public/platform/WebVector.h"
|
| #include "sky/engine/public/web/WebBeginFrameArgs.h"
|
| #include "sky/engine/public/web/WebFrameClient.h"
|
| -#include "sky/engine/public/web/WebHitTestResult.h"
|
| #include "sky/engine/public/web/WebNode.h"
|
| #include "sky/engine/public/web/WebRange.h"
|
| #include "sky/engine/public/web/WebTextInputInfo.h"
|
| @@ -734,17 +733,6 @@ IntSize WebViewImpl::contentsSize() const
|
| return root->documentRect().size();
|
| }
|
|
|
| -WebHitTestResult WebViewImpl::hitTestResultAt(const WebPoint& point)
|
| -{
|
| - return coreHitTestResultAt(point);
|
| -}
|
| -
|
| -HitTestResult WebViewImpl::coreHitTestResultAt(const WebPoint& point)
|
| -{
|
| - IntPoint scaledPoint = point;
|
| - return hitTestResultForWindowPos(scaledPoint);
|
| -}
|
| -
|
| void WebViewImpl::spellingMarkers(WebVector<uint32_t>* markers)
|
| {
|
| Vector<uint32_t> result;
|
|
|