| 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 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 // | 595 // |
| 596 // This is a dual of insertedInto(), and is similar to the DOMNodeRemovedFro
mDocument DOM event, but does not require the overhead of event | 596 // This is a dual of insertedInto(), and is similar to the DOMNodeRemovedFro
mDocument DOM event, but does not require the overhead of event |
| 597 // dispatching, and is called _after_ the node is removed from the tree. | 597 // dispatching, and is called _after_ the node is removed from the tree. |
| 598 // | 598 // |
| 599 virtual void removedFrom(ContainerNode* insertionPoint); | 599 virtual void removedFrom(ContainerNode* insertionPoint); |
| 600 | 600 |
| 601 // FIXME(dominicc): This method is not debug-only--it is used by | 601 // FIXME(dominicc): This method is not debug-only--it is used by |
| 602 // Tracing--rename it to something indicative. | 602 // Tracing--rename it to something indicative. |
| 603 String debugName() const; | 603 String debugName() const; |
| 604 | 604 |
| 605 #ifndef NDEBUG | 605 //#ifndef NDEBUG |
| 606 virtual void formatForDebugger(char* buffer, unsigned length) const; | 606 virtual void formatForDebugger(char* buffer, unsigned length) const; |
| 607 | 607 |
| 608 void showNode(const char* prefix = "") const; | 608 void showNode(const char* prefix = "") const; |
| 609 void showTreeForThis() const; | 609 void showTreeForThis() const; |
| 610 void showTreeForThisInFlatTree() const; | 610 void showTreeForThisInFlatTree() const; |
| 611 void showNodePathForThis() const; | 611 void showNodePathForThis() const; |
| 612 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = nullptr, const char* markedLabel2 = nullptr) const; | 612 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = nullptr, const char* markedLabel2 = nullptr) const; |
| 613 void showTreeAndMarkInFlatTree(const Node* markedNode1, const char* markedLa
bel1, const Node* markedNode2 = nullptr, const char* markedLabel2 = nullptr) con
st; | 613 void showTreeAndMarkInFlatTree(const Node* markedNode1, const char* markedLa
bel1, const Node* markedNode2 = nullptr, const char* markedLabel2 = nullptr) con
st; |
| 614 void showTreeForThisAcrossFrame() const; | 614 void showTreeForThisAcrossFrame() const; |
| 615 #endif | 615 //#endif |
| 616 | 616 |
| 617 NodeListsNodeData* nodeLists(); | 617 NodeListsNodeData* nodeLists(); |
| 618 void clearNodeLists(); | 618 void clearNodeLists(); |
| 619 | 619 |
| 620 virtual bool willRespondToMouseMoveEvents(); | 620 virtual bool willRespondToMouseMoveEvents(); |
| 621 virtual bool willRespondToMouseClickEvents(); | 621 virtual bool willRespondToMouseClickEvents(); |
| 622 virtual bool willRespondToTouchEvents(); | 622 virtual bool willRespondToTouchEvents(); |
| 623 | 623 |
| 624 enum ShadowTreesTreatment { | 624 enum ShadowTreesTreatment { |
| 625 TreatShadowTreesAsDisconnected, | 625 TreatShadowTreesAsDisconnected, |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 } // namespace blink | 930 } // namespace blink |
| 931 | 931 |
| 932 #ifndef NDEBUG | 932 #ifndef NDEBUG |
| 933 // Outside the WebCore namespace for ease of invocation from gdb. | 933 // Outside the WebCore namespace for ease of invocation from gdb. |
| 934 void showNode(const blink::Node*); | 934 void showNode(const blink::Node*); |
| 935 void showTree(const blink::Node*); | 935 void showTree(const blink::Node*); |
| 936 void showNodePath(const blink::Node*); | 936 void showNodePath(const blink::Node*); |
| 937 #endif | 937 #endif |
| 938 | 938 |
| 939 #endif // Node_h | 939 #endif // Node_h |
| OLD | NEW |