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

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

Issue 16841010: Inspector: Removed unused references to InspectorAgent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/PageConsoleAgent.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #include "core/inspector/PageConsoleAgent.h" 32 #include "core/inspector/PageConsoleAgent.h"
33 33
34 #include "core/dom/Node.h" 34 #include "core/dom/Node.h"
35 #include "core/dom/shadow/ShadowRoot.h" 35 #include "core/dom/shadow/ShadowRoot.h"
36 #include "core/inspector/InjectedScriptHost.h" 36 #include "core/inspector/InjectedScriptHost.h"
37 #include "core/inspector/InjectedScriptManager.h" 37 #include "core/inspector/InjectedScriptManager.h"
38 #include "core/inspector/InspectorDOMAgent.h" 38 #include "core/inspector/InspectorDOMAgent.h"
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
42 PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, Ins pectorAgent* inspectorAgent, InspectorCompositeState* state, InjectedScriptManag er* injectedScriptManager, InspectorDOMAgent* domAgent) 42 PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, Ins pectorCompositeState* state, InjectedScriptManager* injectedScriptManager, Inspe ctorDOMAgent* domAgent)
43 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager) 43 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
44 , m_inspectorAgent(inspectorAgent)
45 , m_inspectorDOMAgent(domAgent) 44 , m_inspectorDOMAgent(domAgent)
46 { 45 {
47 } 46 }
48 47
49 PageConsoleAgent::~PageConsoleAgent() 48 PageConsoleAgent::~PageConsoleAgent()
50 { 49 {
51 m_inspectorAgent = 0;
52 m_inspectorDOMAgent = 0; 50 m_inspectorDOMAgent = 0;
53 } 51 }
54 52
55 void PageConsoleAgent::clearMessages(ErrorString* errorString) 53 void PageConsoleAgent::clearMessages(ErrorString* errorString)
56 { 54 {
57 m_inspectorDOMAgent->releaseDanglingNodes(); 55 m_inspectorDOMAgent->releaseDanglingNodes();
58 InspectorConsoleAgent::clearMessages(errorString); 56 InspectorConsoleAgent::clearMessages(errorString);
59 } 57 }
60 58
61 class InspectableNode : public InjectedScriptHost::InspectableObject { 59 class InspectableNode : public InjectedScriptHost::InspectableObject {
(...skipping 18 matching lines...) Expand all
80 Node* ancestor = node->highestAncestor(); 78 Node* ancestor = node->highestAncestor();
81 if (!ancestor->isShadowRoot() || toShadowRoot(ancestor)->type() == Shado wRoot::AuthorShadowRoot) 79 if (!ancestor->isShadowRoot() || toShadowRoot(ancestor)->type() == Shado wRoot::AuthorShadowRoot)
82 break; 80 break;
83 // User agent shadow root, keep climbing up. 81 // User agent shadow root, keep climbing up.
84 node = toShadowRoot(ancestor)->host(); 82 node = toShadowRoot(ancestor)->host();
85 } 83 }
86 m_injectedScriptManager->injectedScriptHost()->addInspectedObject(adoptPtr(n ew InspectableNode(node))); 84 m_injectedScriptManager->injectedScriptHost()->addInspectedObject(adoptPtr(n ew InspectableNode(node)));
87 } 85 }
88 86
89 } // namespace WebCore 87 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/PageConsoleAgent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698