| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
|
| index d8befe1463d5a91ae6562a6c792322b83fd6c948..88fcab1c076ef46250661ac8ce9e02348eeec582 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
|
| @@ -12,6 +12,7 @@ namespace blink {
|
|
|
| class V8DebuggerAgent;
|
| class V8HeapProfilerAgent;
|
| +class V8InspectorSessionClient;
|
| class V8ProfilerAgent;
|
| class V8RuntimeAgent;
|
|
|
| @@ -19,6 +20,8 @@ class PLATFORM_EXPORT V8InspectorSession {
|
| public:
|
| virtual ~V8InspectorSession() { }
|
|
|
| + virtual void setClient(V8InspectorSessionClient*) = 0;
|
| +
|
| virtual V8DebuggerAgent* debuggerAgent() = 0;
|
| virtual V8HeapProfilerAgent* heapProfilerAgent() = 0;
|
| virtual V8ProfilerAgent* profilerAgent() = 0;
|
|
|