| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 void setAutofocusElement(Element*); | 628 void setAutofocusElement(Element*); |
| 629 Element* autofocusElement() const { return m_autofocusElement.get(); } | 629 Element* autofocusElement() const { return m_autofocusElement.get(); } |
| 630 | 630 |
| 631 void setActiveHoverElement(PassRefPtrWillBeRawPtr<Element>); | 631 void setActiveHoverElement(PassRefPtrWillBeRawPtr<Element>); |
| 632 Element* activeHoverElement() const { return m_activeHoverElement.get(); } | 632 Element* activeHoverElement() const { return m_activeHoverElement.get(); } |
| 633 | 633 |
| 634 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false); | 634 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false); |
| 635 void hoveredNodeDetached(Node*); | 635 void hoveredNodeDetached(Node*); |
| 636 void activeChainNodeDetached(Node*); | 636 void activeChainNodeDetached(Node*); |
| 637 | 637 |
| 638 void updateHoverActiveState(const HitTestRequest&, Element*, const PlatformM
ouseEvent* = nullptr); | 638 void updateHoverActiveState(const HitTestRequest&, Element*); |
| 639 | 639 |
| 640 // Updates for :target (CSS3 selector). | 640 // Updates for :target (CSS3 selector). |
| 641 void setCSSTarget(Element*); | 641 void setCSSTarget(Element*); |
| 642 Element* cssTarget() const { return m_cssTarget; } | 642 Element* cssTarget() const { return m_cssTarget; } |
| 643 | 643 |
| 644 void scheduleRenderTreeUpdateIfNeeded(); | 644 void scheduleRenderTreeUpdateIfNeeded(); |
| 645 bool hasPendingForcedStyleRecalc() const; | 645 bool hasPendingForcedStyleRecalc() const; |
| 646 | 646 |
| 647 void registerNodeList(const LiveNodeListBase*); | 647 void registerNodeList(const LiveNodeListBase*); |
| 648 void unregisterNodeList(const LiveNodeListBase*); | 648 void unregisterNodeList(const LiveNodeListBase*); |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1440 | 1440 |
| 1441 } // namespace blink | 1441 } // namespace blink |
| 1442 | 1442 |
| 1443 #ifndef NDEBUG | 1443 #ifndef NDEBUG |
| 1444 // Outside the WebCore namespace for ease of invocation from gdb. | 1444 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1445 void showLiveDocumentInstances(); | 1445 void showLiveDocumentInstances(); |
| 1446 #endif | 1446 #endif |
| 1447 | 1447 |
| 1448 #endif // Document_h | 1448 #endif // Document_h |
| OLD | NEW |