| 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 12 matching lines...) Expand all Loading... |
| 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/inspector/InspectorDOMAgent.h" | 31 #include "core/inspector/InspectorDOMAgent.h" |
| 32 | 32 |
| 33 #include <memory> |
| 33 #include "bindings/core/v8/BindingSecurity.h" | 34 #include "bindings/core/v8/BindingSecurity.h" |
| 34 #include "bindings/core/v8/ExceptionState.h" | 35 #include "bindings/core/v8/ExceptionState.h" |
| 35 #include "bindings/core/v8/V8Node.h" | 36 #include "bindings/core/v8/V8Node.h" |
| 36 #include "core/InputTypeNames.h" | 37 #include "core/InputTypeNames.h" |
| 37 #include "core/dom/Attr.h" | 38 #include "core/dom/Attr.h" |
| 38 #include "core/dom/CharacterData.h" | 39 #include "core/dom/CharacterData.h" |
| 39 #include "core/dom/ContainerNode.h" | 40 #include "core/dom/ContainerNode.h" |
| 40 #include "core/dom/DOMException.h" | 41 #include "core/dom/DOMException.h" |
| 41 #include "core/dom/DOMNodeIds.h" | 42 #include "core/dom/DOMNodeIds.h" |
| 42 #include "core/dom/Document.h" | 43 #include "core/dom/Document.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 72 #include "core/layout/line/InlineTextBox.h" | 73 #include "core/layout/line/InlineTextBox.h" |
| 73 #include "core/loader/DocumentLoader.h" | 74 #include "core/loader/DocumentLoader.h" |
| 74 #include "core/page/FrameTree.h" | 75 #include "core/page/FrameTree.h" |
| 75 #include "core/page/Page.h" | 76 #include "core/page/Page.h" |
| 76 #include "core/xml/DocumentXPathEvaluator.h" | 77 #include "core/xml/DocumentXPathEvaluator.h" |
| 77 #include "core/xml/XPathResult.h" | 78 #include "core/xml/XPathResult.h" |
| 78 #include "wtf/ListHashSet.h" | 79 #include "wtf/ListHashSet.h" |
| 79 #include "wtf/PtrUtil.h" | 80 #include "wtf/PtrUtil.h" |
| 80 #include "wtf/text/CString.h" | 81 #include "wtf/text/CString.h" |
| 81 #include "wtf/text/WTFString.h" | 82 #include "wtf/text/WTFString.h" |
| 82 #include <memory> | |
| 83 | 83 |
| 84 namespace blink { | 84 namespace blink { |
| 85 | 85 |
| 86 using namespace HTMLNames; | 86 using namespace HTMLNames; |
| 87 | 87 |
| 88 namespace DOMAgentState { | 88 namespace DOMAgentState { |
| 89 static const char domAgentEnabled[] = "domAgentEnabled"; | 89 static const char domAgentEnabled[] = "domAgentEnabled"; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 namespace { | 92 namespace { |
| (...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2374 visitor->trace(m_idToNodesMap); | 2374 visitor->trace(m_idToNodesMap); |
| 2375 visitor->trace(m_document); | 2375 visitor->trace(m_document); |
| 2376 visitor->trace(m_revalidateTask); | 2376 visitor->trace(m_revalidateTask); |
| 2377 visitor->trace(m_searchResults); | 2377 visitor->trace(m_searchResults); |
| 2378 visitor->trace(m_history); | 2378 visitor->trace(m_history); |
| 2379 visitor->trace(m_domEditor); | 2379 visitor->trace(m_domEditor); |
| 2380 InspectorBaseAgent::trace(visitor); | 2380 InspectorBaseAgent::trace(visitor); |
| 2381 } | 2381 } |
| 2382 | 2382 |
| 2383 } // namespace blink | 2383 } // namespace blink |
| OLD | NEW |