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

Unified Diff: Source/core/inspector/InjectedScriptHost.h

Issue 1286343003: DevTools: make InspectorDebuggerAgent aggregate V8DebuggerAgent instead of inheriting (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed dgozman's comments Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/AsyncCallTracker.cpp ('k') | Source/core/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InjectedScriptHost.h
diff --git a/Source/core/inspector/InjectedScriptHost.h b/Source/core/inspector/InjectedScriptHost.h
index 0da5785a9f3fabd5197850f1d1e4128a0ffdaf94..66a5ec610c061eee12e6adff42db5fdffad0b3ff 100644
--- a/Source/core/inspector/InjectedScriptHost.h
+++ b/Source/core/inspector/InjectedScriptHost.h
@@ -45,9 +45,9 @@ namespace blink {
class EventTarget;
class InjectedScriptHostClient;
class InspectorConsoleAgent;
-class InspectorDebuggerAgent;
class JSONValue;
class ScriptValue;
+class V8DebuggerAgent;
class V8Debugger;
class EventListenerInfo;
@@ -65,7 +65,7 @@ public:
using InspectCallback = Function<void(PassRefPtr<TypeBuilder::Runtime::RemoteObject>, PassRefPtr<JSONObject>)>;
- void init(InspectorConsoleAgent* consoleAgent, InspectorDebuggerAgent* debuggerAgent, PassOwnPtr<InspectCallback> inspectCallback, V8Debugger* debugger, PassOwnPtr<InjectedScriptHostClient> injectedScriptHostClient)
+ void init(InspectorConsoleAgent* consoleAgent, V8DebuggerAgent* debuggerAgent, PassOwnPtr<InspectCallback> inspectCallback, V8Debugger* debugger, PassOwnPtr<InjectedScriptHostClient> injectedScriptHostClient)
{
m_consoleAgent = consoleAgent;
m_debuggerAgent = debuggerAgent;
@@ -109,7 +109,7 @@ private:
InjectedScriptHost();
RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent;
- RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
+ RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
OwnPtr<InspectCallback> m_inspectCallback;
V8Debugger* m_debugger;
WillBeHeapVector<OwnPtrWillBeMember<InspectableObject>> m_inspectedObjects;
« no previous file with comments | « Source/core/inspector/AsyncCallTracker.cpp ('k') | Source/core/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698