We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bfb2b6 commit 9e76b83Copy full SHA for 9e76b83
src/inspector_agent.cc
@@ -322,11 +322,14 @@ class ChannelImpl final : public v8_inspector::V8Inspector::Channel {
322
explicit ChannelImpl(AgentImpl* agent): agent_(agent) {}
323
virtual ~ChannelImpl() {}
324
private:
325
- void sendResponse(int callId, std::unique_ptr<v8_inspector::StringBuffer> message) override {
+ void sendResponse(int callId,
326
+ std::unique_ptr<v8_inspector::StringBuffer> message)
327
+ override {
328
sendMessageToFrontend(message->string());
329
}
330
- void sendNotification(std::unique_ptr<v8_inspector::StringBuffer> message) override {
331
+ void sendNotification(std::unique_ptr<v8_inspector::StringBuffer> message)
332
333
334
335
0 commit comments