| 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. | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 7 * (http://www.torchmobile.com/) | 7 * (http://www.torchmobile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 void RegisterTransientMutationObserver(MutationObserverRegistration*); | 798 void RegisterTransientMutationObserver(MutationObserverRegistration*); |
| 799 void UnregisterTransientMutationObserver(MutationObserverRegistration*); | 799 void UnregisterTransientMutationObserver(MutationObserverRegistration*); |
| 800 void NotifyMutationObserversNodeWillDetach(); | 800 void NotifyMutationObserversNodeWillDetach(); |
| 801 | 801 |
| 802 unsigned ConnectedSubframeCount() const; | 802 unsigned ConnectedSubframeCount() const; |
| 803 void IncrementConnectedSubframeCount(); | 803 void IncrementConnectedSubframeCount(); |
| 804 void DecrementConnectedSubframeCount(); | 804 void DecrementConnectedSubframeCount(); |
| 805 | 805 |
| 806 StaticNodeList* getDestinationInsertionPoints(); | 806 StaticNodeList* getDestinationInsertionPoints(); |
| 807 HTMLSlotElement* AssignedSlot() const; | 807 HTMLSlotElement* AssignedSlot() const; |
| 808 HTMLSlotElement* FinalDestinationSlot() const; |
| 808 HTMLSlotElement* assignedSlotForBinding(); | 809 HTMLSlotElement* assignedSlotForBinding(); |
| 809 | 810 |
| 810 bool IsFinishedParsingChildren() const { | 811 bool IsFinishedParsingChildren() const { |
| 811 return GetFlag(kIsFinishedParsingChildrenFlag); | 812 return GetFlag(kIsFinishedParsingChildrenFlag); |
| 812 } | 813 } |
| 813 | 814 |
| 814 void CheckSlotChange(SlotChangeType); | 815 void CheckSlotChange(SlotChangeType); |
| 815 void CheckSlotChangeAfterInserted() { | 816 void CheckSlotChangeAfterInserted() { |
| 816 CheckSlotChange(SlotChangeType::kInitial); | 817 CheckSlotChange(SlotChangeType::kInitial); |
| 817 } | 818 } |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 } // namespace blink | 1039 } // namespace blink |
| 1039 | 1040 |
| 1040 #ifndef NDEBUG | 1041 #ifndef NDEBUG |
| 1041 // Outside the WebCore namespace for ease of invocation from gdb. | 1042 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1042 void showNode(const blink::Node*); | 1043 void showNode(const blink::Node*); |
| 1043 void showTree(const blink::Node*); | 1044 void showTree(const blink::Node*); |
| 1044 void showNodePath(const blink::Node*); | 1045 void showNodePath(const blink::Node*); |
| 1045 #endif | 1046 #endif |
| 1046 | 1047 |
| 1047 #endif // Node_h | 1048 #endif // Node_h |
| OLD | NEW |