We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 145ab05 commit bb77cceCopy full SHA for bb77cce
src/inspector_agent.cc
@@ -195,7 +195,7 @@ class JsBindingsSessionDelegate : public InspectorSessionDelegate {
195
v8::WeakCallbackType::kParameter);
196
}
197
198
- virtual ~JsBindingsSessionDelegate() {
+ ~JsBindingsSessionDelegate() override {
199
session_.Reset();
200
receiver_.Reset();
201
callback_.Reset();
src/inspector_agent.h
@@ -37,6 +37,7 @@ namespace inspector {
37
38
class InspectorSessionDelegate {
39
public:
40
+ virtual ~InspectorSessionDelegate() = default;
41
virtual bool WaitForFrontendMessage() = 0;
42
virtual void OnMessage(const v8_inspector::StringView& message) = 0;
43
};
0 commit comments