| Index: sky/engine/web/ChromeClientImpl.cpp
|
| diff --git a/sky/engine/web/ChromeClientImpl.cpp b/sky/engine/web/ChromeClientImpl.cpp
|
| index 26ccfc34ee48cb181b55a88c835b1cff77d750da..28c3319093f850b7dd5850f82ce449d1385f7383 100644
|
| --- a/sky/engine/web/ChromeClientImpl.cpp
|
| +++ b/sky/engine/web/ChromeClientImpl.cpp
|
| @@ -246,20 +246,6 @@ void ChromeClientImpl::layoutUpdated(LocalFrame* frame) const
|
| m_webView->layoutUpdated(WebLocalFrameImpl::fromFrame(frame));
|
| }
|
|
|
| -void ChromeClientImpl::mouseDidMoveOverElement(
|
| - const HitTestResult& result, unsigned modifierFlags)
|
| -{
|
| - if (!m_webView->client())
|
| - return;
|
| -
|
| - WebURL url;
|
| - // Find out if the mouse is over a link, and if so, let our UI know...
|
| - if (result.isLiveLink() && !result.absoluteLinkURL().string().isEmpty())
|
| - url = result.absoluteLinkURL();
|
| -
|
| - m_webView->client()->setMouseOverURL(url);
|
| -}
|
| -
|
| void ChromeClientImpl::setCursor(const Cursor& cursor)
|
| {
|
| setCursor(WebCursorInfo(cursor));
|
|
|