OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "core/dom/DocumentFragment.h" | 44 #include "core/dom/DocumentFragment.h" |
45 #include "core/dom/DocumentType.h" | 45 #include "core/dom/DocumentType.h" |
46 #include "core/dom/Element.h" | 46 #include "core/dom/Element.h" |
47 #include "core/dom/Node.h" | 47 #include "core/dom/Node.h" |
48 #include "core/dom/PseudoElement.h" | 48 #include "core/dom/PseudoElement.h" |
49 #include "core/dom/StaticNodeList.h" | 49 #include "core/dom/StaticNodeList.h" |
50 #include "core/dom/Text.h" | 50 #include "core/dom/Text.h" |
51 #include "core/dom/shadow/ElementShadow.h" | 51 #include "core/dom/shadow/ElementShadow.h" |
52 #include "core/dom/shadow/InsertionPoint.h" | 52 #include "core/dom/shadow/InsertionPoint.h" |
53 #include "core/dom/shadow/ShadowRoot.h" | 53 #include "core/dom/shadow/ShadowRoot.h" |
54 #include "core/editing/Serialization.h" | 54 #include "core/editing/serializers/Serialization.h" |
55 #include "core/events/EventListener.h" | 55 #include "core/events/EventListener.h" |
56 #include "core/events/EventTarget.h" | 56 #include "core/events/EventTarget.h" |
57 #include "core/fileapi/File.h" | 57 #include "core/fileapi/File.h" |
58 #include "core/fileapi/FileList.h" | 58 #include "core/fileapi/FileList.h" |
59 #include "core/frame/LocalFrame.h" | 59 #include "core/frame/LocalFrame.h" |
60 #include "core/html/HTMLFrameOwnerElement.h" | 60 #include "core/html/HTMLFrameOwnerElement.h" |
61 #include "core/html/HTMLInputElement.h" | 61 #include "core/html/HTMLInputElement.h" |
62 #include "core/html/HTMLLinkElement.h" | 62 #include "core/html/HTMLLinkElement.h" |
63 #include "core/html/HTMLTemplateElement.h" | 63 #include "core/html/HTMLTemplateElement.h" |
64 #include "core/html/imports/HTMLImportChild.h" | 64 #include "core/html/imports/HTMLImportChild.h" |
(...skipping 2176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2241 visitor->trace(m_revalidateTask); | 2241 visitor->trace(m_revalidateTask); |
2242 visitor->trace(m_searchResults); | 2242 visitor->trace(m_searchResults); |
2243 #endif | 2243 #endif |
2244 visitor->trace(m_hoveredNodeForInspectMode); | 2244 visitor->trace(m_hoveredNodeForInspectMode); |
2245 visitor->trace(m_history); | 2245 visitor->trace(m_history); |
2246 visitor->trace(m_domEditor); | 2246 visitor->trace(m_domEditor); |
2247 InspectorBaseAgent::trace(visitor); | 2247 InspectorBaseAgent::trace(visitor); |
2248 } | 2248 } |
2249 | 2249 |
2250 } // namespace blink | 2250 } // namespace blink |
OLD | NEW |