Home
last modified time | relevance | path

Searched refs:m_mouseOverTimestamp (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLAnchorElement.cpp100 double m_mouseOverTimestamp; member in WebCore::HTMLAnchorElement::PrefetchEventHandler
548 m_mouseOverTimestamp = 0; in reset()
576 if (m_mouseOverTimestamp == 0.0) { in handleMouseOver()
577 m_mouseOverTimestamp = event->timeStamp(); in handleMouseOver()
587 if (m_mouseOverTimestamp > 0.0) { in handleMouseOut()
588 …double mouseOverDuration = convertDOMTimeStampToSeconds(event->timeStamp() - m_mouseOverTimestamp); in handleMouseOut()
591 m_mouseOverTimestamp = 0.0; in handleMouseOut()
624 bool capturedMouseOver = (m_mouseOverTimestamp > 0.0); in handleClick()
626 …double mouseOverDuration = convertDOMTimeStampToSeconds(event->timeStamp() - m_mouseOverTimestamp); in handleClick()