Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Ostroukhov <eostroukhov@chromium.org>2018-05-23 00:20:24 +0300
committerMyles Borins <mylesborins@google.com>2018-05-24 00:05:38 +0300
commit92dd9b59eb0c2146c7869dfda4b935c1ce663f10 (patch)
treeb279f2205a6fc86c997fbcaa2f09d60dfc42b555 /src/inspector_agent.cc
parent5886b7826cbfbe4cc07223bc01deb16962ec9094 (diff)
inspector: get rid of the make_unique
PR-URL: https://github.com/nodejs/node/pull/20895 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Diffstat (limited to 'src/inspector_agent.cc')
-rw-r--r--src/inspector_agent.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc
index 50aa23b63cd..162bc6770e5 100644
--- a/src/inspector_agent.cc
+++ b/src/inspector_agent.cc
@@ -198,8 +198,8 @@ class ChannelImpl final : public v8_inspector::V8Inspector::Channel,
std::unique_ptr<InspectorSessionDelegate> delegate)
: delegate_(std::move(delegate)) {
session_ = inspector->connect(1, this, StringView());
- node_dispatcher_ = std::make_unique<protocol::UberDispatcher>(this);
- tracing_agent_ = std::make_unique<protocol::TracingAgent>(env);
+ node_dispatcher_.reset(new protocol::UberDispatcher(this));
+ tracing_agent_.reset(new protocol::TracingAgent(env));
tracing_agent_->Wire(node_dispatcher_.get());
}