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 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 #include "GestureEvent.h" | 65 #include "GestureEvent.h" |
66 #include "HTMLElement.h" | 66 #include "HTMLElement.h" |
67 #include "HTMLFrameOwnerElement.h" | 67 #include "HTMLFrameOwnerElement.h" |
68 #include "HTMLNames.h" | 68 #include "HTMLNames.h" |
69 #include "HTMLStyleElement.h" | 69 #include "HTMLStyleElement.h" |
70 #include "InsertionPoint.h" | 70 #include "InsertionPoint.h" |
71 #include "InspectorCounters.h" | 71 #include "InspectorCounters.h" |
72 #include "KeyboardEvent.h" | 72 #include "KeyboardEvent.h" |
73 #include "LabelsNodeList.h" | 73 #include "LabelsNodeList.h" |
74 #include "LiveNodeList.h" | 74 #include "LiveNodeList.h" |
75 #include "Logging.h" | |
76 #include "MouseEvent.h" | 75 #include "MouseEvent.h" |
77 #include "MutationEvent.h" | 76 #include "MutationEvent.h" |
78 #include "NameNodeList.h" | 77 #include "NameNodeList.h" |
79 #include "NamedNodeMap.h" | 78 #include "NamedNodeMap.h" |
80 #include "NodeRareData.h" | 79 #include "NodeRareData.h" |
81 #include "NodeRenderingContext.h" | 80 #include "NodeRenderingContext.h" |
82 #include "NodeTraversal.h" | 81 #include "NodeTraversal.h" |
83 #include "Page.h" | 82 #include "Page.h" |
84 #include "PlatformMouseEvent.h" | |
85 #include "PlatformWheelEvent.h" | |
86 #include "ProcessingInstruction.h" | 83 #include "ProcessingInstruction.h" |
87 #include "ProgressEvent.h" | 84 #include "ProgressEvent.h" |
88 #include "RadioNodeList.h" | 85 #include "RadioNodeList.h" |
89 #include "RegisteredEventListener.h" | 86 #include "RegisteredEventListener.h" |
90 #include "RenderBlock.h" | 87 #include "RenderBlock.h" |
91 #include "RenderBox.h" | 88 #include "RenderBox.h" |
92 #include "RenderTextControl.h" | 89 #include "RenderTextControl.h" |
93 #include "RenderView.h" | 90 #include "RenderView.h" |
94 #include "ScopedEventQueue.h" | 91 #include "ScopedEventQueue.h" |
95 #include "SelectorQuery.h" | 92 #include "SelectorQuery.h" |
96 #include "Settings.h" | 93 #include "Settings.h" |
97 #include "ShadowRoot.h" | 94 #include "ShadowRoot.h" |
98 #include "StaticNodeList.h" | 95 #include "StaticNodeList.h" |
99 #include "StyleResolver.h" | 96 #include "StyleResolver.h" |
100 #include "TagNodeList.h" | 97 #include "TagNodeList.h" |
101 #include "TemplateContentDocumentFragment.h" | 98 #include "TemplateContentDocumentFragment.h" |
102 #include "Text.h" | 99 #include "Text.h" |
103 #include "TextEvent.h" | 100 #include "TextEvent.h" |
104 #include "TouchEvent.h" | 101 #include "TouchEvent.h" |
105 #include "TreeScopeAdopter.h" | 102 #include "TreeScopeAdopter.h" |
106 #include "UIEvent.h" | 103 #include "UIEvent.h" |
107 #include "UIEventWithKeyState.h" | 104 #include "UIEventWithKeyState.h" |
108 #include "UserActionElementSet.h" | 105 #include "UserActionElementSet.h" |
109 #include "WebCoreMemoryInstrumentation.h" | 106 #include "WebCoreMemoryInstrumentation.h" |
110 #include "WheelEvent.h" | 107 #include "WheelEvent.h" |
111 #include "WindowEventContext.h" | 108 #include "WindowEventContext.h" |
112 #include "XMLNames.h" | 109 #include "XMLNames.h" |
113 #include "core/accessibility/AXObjectCache.h" | 110 #include "core/accessibility/AXObjectCache.h" |
| 111 #include "core/platform/Logging.h" |
| 112 #include "core/platform/PlatformMouseEvent.h" |
| 113 #include "core/platform/PlatformWheelEvent.h" |
114 #include "core/storage/StorageEvent.h" | 114 #include "core/storage/StorageEvent.h" |
115 #include "htmlediting.h" | 115 #include "htmlediting.h" |
116 #include <wtf/HashSet.h> | 116 #include <wtf/HashSet.h> |
117 #include <wtf/PassOwnPtr.h> | 117 #include <wtf/PassOwnPtr.h> |
118 #include <wtf/RefCountedLeakCounter.h> | 118 #include <wtf/RefCountedLeakCounter.h> |
119 #include <wtf/text/CString.h> | 119 #include <wtf/text/CString.h> |
120 #include <wtf/text/StringBuilder.h> | 120 #include <wtf/text/StringBuilder.h> |
121 #include <wtf/UnusedParam.h> | 121 #include <wtf/UnusedParam.h> |
122 #include <wtf/Vector.h> | 122 #include <wtf/Vector.h> |
123 | 123 |
(...skipping 2612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2736 node->showTreeForThis(); | 2736 node->showTreeForThis(); |
2737 } | 2737 } |
2738 | 2738 |
2739 void showNodePath(const WebCore::Node* node) | 2739 void showNodePath(const WebCore::Node* node) |
2740 { | 2740 { |
2741 if (node) | 2741 if (node) |
2742 node->showNodePathForThis(); | 2742 node->showNodePathForThis(); |
2743 } | 2743 } |
2744 | 2744 |
2745 #endif | 2745 #endif |
OLD | NEW |