| 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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 #include "core/page/Page.h" | 166 #include "core/page/Page.h" |
| 167 #include "core/page/PointerLockController.h" | 167 #include "core/page/PointerLockController.h" |
| 168 #include "core/page/scrolling/ScrollingCoordinator.h" | 168 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 169 #include "core/rendering/FastTextAutosizer.h" | 169 #include "core/rendering/FastTextAutosizer.h" |
| 170 #include "core/rendering/HitTestResult.h" | 170 #include "core/rendering/HitTestResult.h" |
| 171 #include "core/rendering/RenderView.h" | 171 #include "core/rendering/RenderView.h" |
| 172 #include "core/rendering/TextAutosizer.h" | 172 #include "core/rendering/TextAutosizer.h" |
| 173 #include "core/rendering/compositing/RenderLayerCompositor.h" | 173 #include "core/rendering/compositing/RenderLayerCompositor.h" |
| 174 #include "core/svg/SVGDocumentExtensions.h" | 174 #include "core/svg/SVGDocumentExtensions.h" |
| 175 #include "core/svg/SVGFontFaceElement.h" | 175 #include "core/svg/SVGFontFaceElement.h" |
| 176 #include "core/svg/SVGStyleElement.h" | |
| 177 #include "core/svg/SVGUseElement.h" | 176 #include "core/svg/SVGUseElement.h" |
| 178 #include "core/workers/SharedWorkerRepositoryClient.h" | 177 #include "core/workers/SharedWorkerRepositoryClient.h" |
| 179 #include "core/xml/XSLTProcessor.h" | 178 #include "core/xml/XSLTProcessor.h" |
| 180 #include "core/xml/parser/XMLDocumentParser.h" | 179 #include "core/xml/parser/XMLDocumentParser.h" |
| 181 #include "platform/DateComponents.h" | 180 #include "platform/DateComponents.h" |
| 182 #include "platform/Language.h" | 181 #include "platform/Language.h" |
| 183 #include "platform/RuntimeEnabledFeatures.h" | 182 #include "platform/RuntimeEnabledFeatures.h" |
| 184 #include "platform/TraceEvent.h" | 183 #include "platform/TraceEvent.h" |
| 185 #include "platform/network/ContentSecurityPolicyParsers.h" | 184 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 186 #include "platform/network/HTTPParsers.h" | 185 #include "platform/network/HTTPParsers.h" |
| (...skipping 5668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5855 visitor->trace(m_compositorPendingAnimations); | 5854 visitor->trace(m_compositorPendingAnimations); |
| 5856 visitor->trace(m_contextDocument); | 5855 visitor->trace(m_contextDocument); |
| 5857 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); | 5856 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); |
| 5858 DocumentSupplementable::trace(visitor); | 5857 DocumentSupplementable::trace(visitor); |
| 5859 TreeScope::trace(visitor); | 5858 TreeScope::trace(visitor); |
| 5860 ContainerNode::trace(visitor); | 5859 ContainerNode::trace(visitor); |
| 5861 ExecutionContext::trace(visitor); | 5860 ExecutionContext::trace(visitor); |
| 5862 } | 5861 } |
| 5863 | 5862 |
| 5864 } // namespace WebCore | 5863 } // namespace WebCore |
| OLD | NEW |