| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. |
| 3 * Copyright (C) 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "core/css/resolver/ScopedStyleResolver.h" | 31 #include "core/css/resolver/ScopedStyleResolver.h" |
| 32 #include "core/dom/ContainerNode.h" | 32 #include "core/dom/ContainerNode.h" |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/dom/Element.h" | 34 #include "core/dom/Element.h" |
| 35 #include "core/dom/ElementTraversal.h" | 35 #include "core/dom/ElementTraversal.h" |
| 36 #include "core/dom/IdTargetObserverRegistry.h" | 36 #include "core/dom/IdTargetObserverRegistry.h" |
| 37 #include "core/dom/NodeRenderStyle.h" | 37 #include "core/dom/NodeRenderStyle.h" |
| 38 #include "core/dom/TreeScopeAdopter.h" | 38 #include "core/dom/TreeScopeAdopter.h" |
| 39 #include "core/dom/shadow/ElementShadow.h" | 39 #include "core/dom/shadow/ElementShadow.h" |
| 40 #include "core/dom/shadow/ShadowRoot.h" | 40 #include "core/dom/shadow/ShadowRoot.h" |
| 41 #include "core/editing/DOMSelection.h" |
| 41 #include "core/events/EventPath.h" | 42 #include "core/events/EventPath.h" |
| 42 #include "core/frame/FrameView.h" | 43 #include "core/frame/FrameView.h" |
| 43 #include "core/frame/LocalFrame.h" | 44 #include "core/frame/LocalFrame.h" |
| 44 #include "core/html/HTMLAnchorElement.h" | 45 #include "core/html/HTMLAnchorElement.h" |
| 45 #include "core/html/HTMLFrameOwnerElement.h" | 46 #include "core/html/HTMLFrameOwnerElement.h" |
| 46 #include "core/html/HTMLLabelElement.h" | 47 #include "core/html/HTMLLabelElement.h" |
| 47 #include "core/html/HTMLMapElement.h" | 48 #include "core/html/HTMLMapElement.h" |
| 48 #include "core/page/DOMSelection.h" | |
| 49 #include "core/page/FocusController.h" | 49 #include "core/page/FocusController.h" |
| 50 #include "core/page/Page.h" | 50 #include "core/page/Page.h" |
| 51 #include "core/rendering/HitTestResult.h" | 51 #include "core/rendering/HitTestResult.h" |
| 52 #include "core/rendering/RenderView.h" | 52 #include "core/rendering/RenderView.h" |
| 53 #include "wtf/Vector.h" | 53 #include "wtf/Vector.h" |
| 54 | 54 |
| 55 namespace blink { | 55 namespace blink { |
| 56 | 56 |
| 57 using namespace HTMLNames; | 57 using namespace HTMLNames; |
| 58 | 58 |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 visitor->trace(m_parentTreeScope); | 558 visitor->trace(m_parentTreeScope); |
| 559 visitor->trace(m_idTargetObserverRegistry); | 559 visitor->trace(m_idTargetObserverRegistry); |
| 560 visitor->trace(m_selection); | 560 visitor->trace(m_selection); |
| 561 visitor->trace(m_elementsById); | 561 visitor->trace(m_elementsById); |
| 562 visitor->trace(m_imageMapsByName); | 562 visitor->trace(m_imageMapsByName); |
| 563 visitor->trace(m_labelsByForAttribute); | 563 visitor->trace(m_labelsByForAttribute); |
| 564 visitor->trace(m_scopedStyleResolver); | 564 visitor->trace(m_scopedStyleResolver); |
| 565 } | 565 } |
| 566 | 566 |
| 567 } // namespace blink | 567 } // namespace blink |
| OLD | NEW |