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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h

Issue 1967933002: [DevTools] Dispatch messages to V8InspectorSession directly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1936593002
Patch Set: rebased Created 4 years, 7 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
Index: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
index e4775ffc16085ce1aa7526f17ee8caa4c0a2c494..fc4998630e118eb13f91c1f7de5b7bbcfcc9e68f 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
@@ -6,14 +6,17 @@
#define V8InspectorSessionClient_h
#include "platform/PlatformExport.h"
+#include "platform/inspector_protocol/FrontendChannel.h"
+#include "wtf/Compiler.h"
#include <v8.h>
namespace blink {
-class PLATFORM_EXPORT V8InspectorSessionClient {
+class PLATFORM_EXPORT V8InspectorSessionClient : WTF_NON_EXPORTED_BASE(public protocol::FrontendChannel)
+{
public:
- virtual ~V8InspectorSessionClient() { }
+ ~V8InspectorSessionClient() override { }
virtual void startInstrumenting() = 0;
virtual void stopInstrumenting() = 0;
virtual void resumeStartup() = 0;

Powered by Google App Engine
This is Rietveld 408576698