Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1030)

Side by Side Diff: Source/core/inspector/InspectorDOMAgent.cpp

Issue 15942008: Remove unused includes from core/inspector and core/svg .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase and address pdr's comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 13 matching lines...) Expand all
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 "config.h" 31 #include "config.h"
32 #include "core/inspector/InspectorDOMAgent.h" 32 #include "core/inspector/InspectorDOMAgent.h"
33 33
34 #include "CSSPropertyNames.h"
35 #include "HTMLNames.h" 34 #include "HTMLNames.h"
36 #include "InspectorFrontend.h" 35 #include "InspectorFrontend.h"
37 #include "bindings/v8/ScriptEventListener.h" 36 #include "bindings/v8/ScriptEventListener.h"
38 #include "core/css/CSSComputedStyleDeclaration.h"
39 #include "core/css/CSSPropertySourceData.h"
40 #include "core/css/CSSRule.h"
41 #include "core/css/CSSRuleList.h"
42 #include "core/css/CSSStyleRule.h"
43 #include "core/css/CSSStyleSheet.h"
44 #include "core/css/StylePropertySet.h"
45 #include "core/css/StyleSheetList.h"
46 #include "core/dom/Attr.h" 37 #include "core/dom/Attr.h"
47 #include "core/dom/CharacterData.h" 38 #include "core/dom/CharacterData.h"
48 #include "core/dom/ContainerNode.h" 39 #include "core/dom/ContainerNode.h"
49 #include "core/dom/Document.h" 40 #include "core/dom/Document.h"
50 #include "core/dom/DocumentFragment.h" 41 #include "core/dom/DocumentFragment.h"
51 #include "core/dom/DocumentType.h" 42 #include "core/dom/DocumentType.h"
52 #include "core/dom/Element.h" 43 #include "core/dom/Element.h"
53 #include "core/dom/Event.h"
54 #include "core/dom/EventContext.h"
55 #include "core/dom/EventListener.h" 44 #include "core/dom/EventListener.h"
56 #include "core/dom/EventNames.h"
57 #include "core/dom/EventTarget.h" 45 #include "core/dom/EventTarget.h"
58 #include "core/dom/MutationEvent.h"
59 #include "core/dom/Node.h" 46 #include "core/dom/Node.h"
60 #include "core/dom/NodeList.h" 47 #include "core/dom/NodeList.h"
61 #include "core/dom/NodeTraversal.h" 48 #include "core/dom/NodeTraversal.h"
62 #include "core/dom/Text.h" 49 #include "core/dom/Text.h"
63 #include "core/dom/shadow/ElementShadow.h" 50 #include "core/dom/shadow/ElementShadow.h"
64 #include "core/dom/shadow/ShadowRoot.h" 51 #include "core/dom/shadow/ShadowRoot.h"
65 #include "core/fileapi/File.h" 52 #include "core/fileapi/File.h"
66 #include "core/fileapi/FileList.h" 53 #include "core/fileapi/FileList.h"
67 #include "core/html/HTMLElement.h"
68 #include "core/html/HTMLFrameOwnerElement.h" 54 #include "core/html/HTMLFrameOwnerElement.h"
69 #include "core/html/HTMLInputElement.h" 55 #include "core/html/HTMLInputElement.h"
70 #include "core/html/HTMLTemplateElement.h" 56 #include "core/html/HTMLTemplateElement.h"
71 #include "core/inspector/DOMEditor.h" 57 #include "core/inspector/DOMEditor.h"
72 #include "core/inspector/DOMPatchSupport.h" 58 #include "core/inspector/DOMPatchSupport.h"
73 #include "core/inspector/IdentifiersFactory.h" 59 #include "core/inspector/IdentifiersFactory.h"
74 #include "core/inspector/InjectedScriptManager.h" 60 #include "core/inspector/InjectedScriptManager.h"
75 #include "core/inspector/InspectorClient.h"
76 #include "core/inspector/InspectorHistory.h" 61 #include "core/inspector/InspectorHistory.h"
77 #include "core/inspector/InspectorOverlay.h" 62 #include "core/inspector/InspectorOverlay.h"
78 #include "core/inspector/InspectorPageAgent.h" 63 #include "core/inspector/InspectorPageAgent.h"
79 #include "core/inspector/InspectorState.h" 64 #include "core/inspector/InspectorState.h"
80 #include "core/inspector/InstrumentingAgents.h" 65 #include "core/inspector/InstrumentingAgents.h"
81 #include "core/loader/CookieJar.h"
82 #include "core/loader/DocumentLoader.h" 66 #include "core/loader/DocumentLoader.h"
83 #include "core/page/DOMWindow.h"
84 #include "core/page/Frame.h" 67 #include "core/page/Frame.h"
85 #include "core/page/FrameTree.h" 68 #include "core/page/FrameTree.h"
86 #include "core/page/Page.h" 69 #include "core/page/Page.h"
87 #include "core/page/Settings.h"
88 #include "core/platform/Cookie.h"
89 #include "core/platform/Pasteboard.h"
90 #include "core/platform/PlatformMouseEvent.h" 70 #include "core/platform/PlatformMouseEvent.h"
91 #include "core/platform/PlatformTouchEvent.h" 71 #include "core/platform/PlatformTouchEvent.h"
92 #include "core/platform/graphics/IntRect.h"
93 #include "core/rendering/HitTestResult.h" 72 #include "core/rendering/HitTestResult.h"
94 #include "core/rendering/RenderView.h" 73 #include "core/rendering/RenderView.h"
95 #include "core/rendering/style/RenderStyle.h"
96 #include "core/rendering/style/RenderStyleConstants.h"
97 #include "core/xml/XPathResult.h" 74 #include "core/xml/XPathResult.h"
98 75
99 #include "core/editing/htmlediting.h"
100 #include "core/editing/markup.h" 76 #include "core/editing/markup.h"
101 77
102 #include <wtf/HashSet.h> 78 #include <wtf/HashSet.h>
103 #include <wtf/ListHashSet.h> 79 #include <wtf/ListHashSet.h>
104 #include <wtf/OwnPtr.h> 80 #include <wtf/OwnPtr.h>
105 #include <wtf/text/CString.h> 81 #include <wtf/text/CString.h>
106 #include <wtf/text/WTFString.h> 82 #include <wtf/text/WTFString.h>
107 #include <wtf/Vector.h> 83 #include <wtf/Vector.h>
108 84
109 namespace WebCore { 85 namespace WebCore {
(...skipping 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after
1847 1823
1848 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m ainWorldScriptState(frame)); 1824 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m ainWorldScriptState(frame));
1849 if (injectedScript.hasNoValue()) 1825 if (injectedScript.hasNoValue())
1850 return 0; 1826 return 0;
1851 1827
1852 return injectedScript.wrapNode(node, objectGroup); 1828 return injectedScript.wrapNode(node, objectGroup);
1853 } 1829 }
1854 1830
1855 } // namespace WebCore 1831 } // namespace WebCore
1856 1832
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorController.cpp ('k') | Source/core/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698