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, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
155 | 155 |
156 // All Nodes are placed in their own heap partition for security. | 156 // All Nodes are placed in their own heap partition for security. |
157 // See http://crbug.com/246860 for detail. | 157 // See http://crbug.com/246860 for detail. |
158 void* operator new(size_t); | 158 void* operator new(size_t); |
159 void operator delete(void*); | 159 void operator delete(void*); |
160 | 160 |
161 static bool isSupported(const String& feature, const String& version); | 161 static bool isSupported(const String& feature, const String& version); |
162 static void dumpStatistics(); | 162 static void dumpStatistics(); |
163 | 163 |
164 virtual ~Node(); | 164 virtual ~Node(); |
165 void willBeDeletedFrom(Document*); | 165 void willBeDeletedFrom(Document&); |
adamk
2013/10/16 17:15:17
This method really should be protected, it only ex
| |
166 | 166 |
167 // DOM methods & attributes for Node | 167 // DOM methods & attributes for Node |
168 | 168 |
169 bool hasTagName(const QualifiedName&) const; | 169 bool hasTagName(const QualifiedName&) const; |
170 virtual String nodeName() const = 0; | 170 virtual String nodeName() const = 0; |
171 virtual String nodeValue() const; | 171 virtual String nodeValue() const; |
172 virtual void setNodeValue(const String&); | 172 virtual void setNodeValue(const String&); |
173 virtual NodeType nodeType() const = 0; | 173 virtual NodeType nodeType() const = 0; |
174 ContainerNode* parentNode() const; | 174 ContainerNode* parentNode() const; |
175 Element* parentElement() const; | 175 Element* parentElement() const; |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
936 | 936 |
937 } // namespace WebCore | 937 } // namespace WebCore |
938 | 938 |
939 #ifndef NDEBUG | 939 #ifndef NDEBUG |
940 // Outside the WebCore namespace for ease of invocation from gdb. | 940 // Outside the WebCore namespace for ease of invocation from gdb. |
941 void showTree(const WebCore::Node*); | 941 void showTree(const WebCore::Node*); |
942 void showNodePath(const WebCore::Node*); | 942 void showNodePath(const WebCore::Node*); |
943 #endif | 943 #endif |
944 | 944 |
945 #endif | 945 #endif |
OLD | NEW |