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 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * (C) 2007 David Smith (catfish.man@gmail.com) | 6 * (C) 2007 David Smith (catfish.man@gmail.com) |
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
8 * (C) 2007 Eric Seidel (eric@webkit.org) | 8 * (C) 2007 Eric Seidel (eric@webkit.org) |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 #include "core/html/HTMLElement.h" | 96 #include "core/html/HTMLElement.h" |
97 #include "core/html/HTMLFormControlsCollection.h" | 97 #include "core/html/HTMLFormControlsCollection.h" |
98 #include "core/html/HTMLFrameElementBase.h" | 98 #include "core/html/HTMLFrameElementBase.h" |
99 #include "core/html/HTMLFrameOwnerElement.h" | 99 #include "core/html/HTMLFrameOwnerElement.h" |
100 #include "core/html/HTMLOptionsCollection.h" | 100 #include "core/html/HTMLOptionsCollection.h" |
101 #include "core/html/HTMLPlugInElement.h" | 101 #include "core/html/HTMLPlugInElement.h" |
102 #include "core/html/HTMLTableRowsCollection.h" | 102 #include "core/html/HTMLTableRowsCollection.h" |
103 #include "core/html/HTMLTemplateElement.h" | 103 #include "core/html/HTMLTemplateElement.h" |
104 #include "core/html/parser/HTMLParserIdioms.h" | 104 #include "core/html/parser/HTMLParserIdioms.h" |
105 #include "core/inspector/InspectorInstrumentation.h" | 105 #include "core/inspector/InspectorInstrumentation.h" |
106 #include "core/layout/compositing/RenderLayerCompositor.h" | 106 #include "core/layout/Layer.h" |
| 107 #include "core/layout/compositing/LayerCompositor.h" |
107 #include "core/page/Chrome.h" | 108 #include "core/page/Chrome.h" |
108 #include "core/page/ChromeClient.h" | 109 #include "core/page/ChromeClient.h" |
109 #include "core/page/FocusController.h" | 110 #include "core/page/FocusController.h" |
110 #include "core/page/Page.h" | 111 #include "core/page/Page.h" |
111 #include "core/page/PointerLockController.h" | 112 #include "core/page/PointerLockController.h" |
112 #include "core/page/SpatialNavigation.h" | 113 #include "core/page/SpatialNavigation.h" |
113 #include "core/rendering/RenderLayer.h" | |
114 #include "core/rendering/RenderTextFragment.h" | 114 #include "core/rendering/RenderTextFragment.h" |
115 #include "core/rendering/RenderView.h" | 115 #include "core/rendering/RenderView.h" |
116 #include "core/svg/SVGDocumentExtensions.h" | 116 #include "core/svg/SVGDocumentExtensions.h" |
117 #include "core/svg/SVGElement.h" | 117 #include "core/svg/SVGElement.h" |
118 #include "platform/EventDispatchForbiddenScope.h" | 118 #include "platform/EventDispatchForbiddenScope.h" |
119 #include "platform/RuntimeEnabledFeatures.h" | 119 #include "platform/RuntimeEnabledFeatures.h" |
120 #include "platform/UserGestureIndicator.h" | 120 #include "platform/UserGestureIndicator.h" |
121 #include "platform/scroll/ScrollableArea.h" | 121 #include "platform/scroll/ScrollableArea.h" |
122 #include "wtf/BitVector.h" | 122 #include "wtf/BitVector.h" |
123 #include "wtf/HashFunctions.h" | 123 #include "wtf/HashFunctions.h" |
(...skipping 3246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3370 { | 3370 { |
3371 #if ENABLE(OILPAN) | 3371 #if ENABLE(OILPAN) |
3372 if (hasRareData()) | 3372 if (hasRareData()) |
3373 visitor->trace(elementRareData()); | 3373 visitor->trace(elementRareData()); |
3374 visitor->trace(m_elementData); | 3374 visitor->trace(m_elementData); |
3375 #endif | 3375 #endif |
3376 ContainerNode::trace(visitor); | 3376 ContainerNode::trace(visitor); |
3377 } | 3377 } |
3378 | 3378 |
3379 } // namespace blink | 3379 } // namespace blink |
OLD | NEW |