| 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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 CreateSVGElement = CreateElement | IsSVGFlag, | 733 CreateSVGElement = CreateElement | IsSVGFlag, |
| 734 CreateDocument = CreateContainer | InDocumentFlag, | 734 CreateDocument = CreateContainer | InDocumentFlag, |
| 735 CreateInsertionPoint = CreateHTMLElement | IsInsertionPointFlag, | 735 CreateInsertionPoint = CreateHTMLElement | IsInsertionPointFlag, |
| 736 CreateEditingText = CreateText | HasNameOrIsEditingTextFlag, | 736 CreateEditingText = CreateText | HasNameOrIsEditingTextFlag, |
| 737 }; | 737 }; |
| 738 | 738 |
| 739 Node(TreeScope*, ConstructionType); | 739 Node(TreeScope*, ConstructionType); |
| 740 | 740 |
| 741 virtual void didMoveToNewDocument(Document& oldDocument); | 741 virtual void didMoveToNewDocument(Document& oldDocument); |
| 742 | 742 |
| 743 bool addEventListenerInternal(const AtomicString& eventType, PassRefPtr<Even
tListener>, const EventListenerOptions&) override; | 743 bool addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillB
eRawPtr<EventListener>, const EventListenerOptions&) override; |
| 744 bool removeEventListenerInternal(const AtomicString& eventType, PassRefPtr<E
ventListener>, const EventListenerOptions&) override; | 744 bool removeEventListenerInternal(const AtomicString& eventType, PassRefPtrWi
llBeRawPtr<EventListener>, const EventListenerOptions&) override; |
| 745 bool dispatchEventInternal(PassRefPtrWillBeRawPtr<Event>) override; | 745 bool dispatchEventInternal(PassRefPtrWillBeRawPtr<Event>) override; |
| 746 | 746 |
| 747 static void reattachWhitespaceSiblingsIfNeeded(Text* start); | 747 static void reattachWhitespaceSiblingsIfNeeded(Text* start); |
| 748 | 748 |
| 749 #if !ENABLE(OILPAN) | 749 #if !ENABLE(OILPAN) |
| 750 void willBeDeletedFromDocument(); | 750 void willBeDeletedFromDocument(); |
| 751 #endif | 751 #endif |
| 752 | 752 |
| 753 bool hasRareData() const { return getFlag(HasRareDataFlag); } | 753 bool hasRareData() const { return getFlag(HasRareDataFlag); } |
| 754 | 754 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 } // namespace blink | 900 } // namespace blink |
| 901 | 901 |
| 902 #ifndef NDEBUG | 902 #ifndef NDEBUG |
| 903 // Outside the WebCore namespace for ease of invocation from gdb. | 903 // Outside the WebCore namespace for ease of invocation from gdb. |
| 904 void showNode(const blink::Node*); | 904 void showNode(const blink::Node*); |
| 905 void showTree(const blink::Node*); | 905 void showTree(const blink::Node*); |
| 906 void showNodePath(const blink::Node*); | 906 void showNodePath(const blink::Node*); |
| 907 #endif | 907 #endif |
| 908 | 908 |
| 909 #endif // Node_h | 909 #endif // Node_h |
| OLD | NEW |