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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 namespace WebCore { | 47 namespace WebCore { |
48 | 48 |
49 class Attribute; | 49 class Attribute; |
50 class ClassNodeList; | 50 class ClassNodeList; |
51 class ContainerNode; | 51 class ContainerNode; |
52 class DOMSettableTokenList; | 52 class DOMSettableTokenList; |
53 class Document; | 53 class Document; |
54 class Element; | 54 class Element; |
55 class Event; | 55 class Event; |
56 class EventContext; | |
57 class EventDispatchMediator; | 56 class EventDispatchMediator; |
58 class EventListener; | 57 class EventListener; |
59 class ExceptionState; | 58 class ExceptionState; |
60 class FloatPoint; | 59 class FloatPoint; |
61 class Frame; | 60 class Frame; |
62 class HTMLInputElement; | 61 class HTMLInputElement; |
63 class IntRect; | 62 class IntRect; |
64 class KeyboardEvent; | 63 class KeyboardEvent; |
65 class NSResolver; | 64 class NSResolver; |
66 class NameNodeList; | 65 class NameNodeList; |
67 class NamedNodeMap; | 66 class NamedNodeMap; |
| 67 class NodeEventContext; |
68 class NodeList; | 68 class NodeList; |
69 class NodeListsNodeData; | 69 class NodeListsNodeData; |
70 class NodeRareData; | 70 class NodeRareData; |
71 class PlatformGestureEvent; | 71 class PlatformGestureEvent; |
72 class PlatformKeyboardEvent; | 72 class PlatformKeyboardEvent; |
73 class PlatformMouseEvent; | 73 class PlatformMouseEvent; |
74 class PlatformWheelEvent; | 74 class PlatformWheelEvent; |
75 class QualifiedName; | 75 class QualifiedName; |
76 class RadioNodeList; | 76 class RadioNodeList; |
77 class RegisteredEventListener; | 77 class RegisteredEventListener; |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 | 921 |
922 } // namespace WebCore | 922 } // namespace WebCore |
923 | 923 |
924 #ifndef NDEBUG | 924 #ifndef NDEBUG |
925 // Outside the WebCore namespace for ease of invocation from gdb. | 925 // Outside the WebCore namespace for ease of invocation from gdb. |
926 void showTree(const WebCore::Node*); | 926 void showTree(const WebCore::Node*); |
927 void showNodePath(const WebCore::Node*); | 927 void showNodePath(const WebCore::Node*); |
928 #endif | 928 #endif |
929 | 929 |
930 #endif | 930 #endif |
OLD | NEW |