| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 void setActiveHoverElement(PassRefPtr<Element>); | 337 void setActiveHoverElement(PassRefPtr<Element>); |
| 338 Element* activeHoverElement() const { return m_activeHoverElement.get(); } | 338 Element* activeHoverElement() const { return m_activeHoverElement.get(); } |
| 339 | 339 |
| 340 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false); | 340 void removeFocusedElementOfSubtree(Node*, bool amongChildrenOnly = false); |
| 341 void hoveredNodeDetached(Node*); | 341 void hoveredNodeDetached(Node*); |
| 342 void activeChainNodeDetached(Node*); | 342 void activeChainNodeDetached(Node*); |
| 343 | 343 |
| 344 void updateHoverActiveState(const HitTestRequest&, Element*, const PlatformM
ouseEvent* = 0); | 344 void updateHoverActiveState(const HitTestRequest&, Element*, const PlatformM
ouseEvent* = 0); |
| 345 | 345 |
| 346 void scheduleRenderTreeUpdateIfNeeded(); | 346 void scheduleRenderTreeUpdateIfNeeded(); |
| 347 bool hasPendingForcedStyleRecalc() const; | |
| 348 | 347 |
| 349 void attachRange(Range*); | 348 void attachRange(Range*); |
| 350 void detachRange(Range*); | 349 void detachRange(Range*); |
| 351 | 350 |
| 352 void updateRangesAfterChildrenChanged(ContainerNode*); | 351 void updateRangesAfterChildrenChanged(ContainerNode*); |
| 353 void updateRangesAfterNodeMovedToAnotherDocument(const Node&); | 352 void updateRangesAfterNodeMovedToAnotherDocument(const Node&); |
| 354 // nodeChildrenWillBeRemoved is used when removing all node children at once
. | 353 // nodeChildrenWillBeRemoved is used when removing all node children at once
. |
| 355 void nodeChildrenWillBeRemoved(ContainerNode&); | 354 void nodeChildrenWillBeRemoved(ContainerNode&); |
| 356 // nodeWillBeRemoved is only safe when removing one node at a time. | 355 // nodeWillBeRemoved is only safe when removing one node at a time. |
| 357 void nodeWillBeRemoved(Node&); | 356 void nodeWillBeRemoved(Node&); |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 Node* eventTargetNodeForDocument(Document*); | 786 Node* eventTargetNodeForDocument(Document*); |
| 788 | 787 |
| 789 } // namespace blink | 788 } // namespace blink |
| 790 | 789 |
| 791 #ifndef NDEBUG | 790 #ifndef NDEBUG |
| 792 // Outside the WebCore namespace for ease of invocation from gdb. | 791 // Outside the WebCore namespace for ease of invocation from gdb. |
| 793 void showLiveDocumentInstances(); | 792 void showLiveDocumentInstances(); |
| 794 #endif | 793 #endif |
| 795 | 794 |
| 796 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ | 795 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ |
| OLD | NEW |