Skip to content

Commit 92dd9b5

Browse files
Eugene OstroukhovMylesBorins
Eugene Ostroukhov
authored andcommittedMay 23, 2018
inspector: get rid of the make_unique
PR-URL: #20895 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]>
1 parent 5886b78 commit 92dd9b5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎src/inspector/tracing_agent.cc

+4-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ TracingAgent::~TracingAgent() {
5656
}
5757

5858
void TracingAgent::Wire(UberDispatcher* dispatcher) {
59-
frontend_ = std::make_unique<NodeTracing::Frontend>(dispatcher->channel());
59+
frontend_.reset(new NodeTracing::Frontend(dispatcher->channel()));
6060
NodeTracing::Dispatcher::wire(dispatcher, this);
6161
}
6262

@@ -77,7 +77,9 @@ DispatchResponse TracingAgent::start(
7777
return DispatchResponse::Error("At least one category should be enabled");
7878

7979
trace_writer_ = env_->tracing_agent()->AddClient(
80-
categories_set, std::make_unique<InspectorTraceWriter>(frontend_.get()));
80+
categories_set,
81+
std::unique_ptr<InspectorTraceWriter>(
82+
new InspectorTraceWriter(frontend_.get())));
8183
return DispatchResponse::OK();
8284
}
8385

‎src/inspector_agent.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ class ChannelImpl final : public v8_inspector::V8Inspector::Channel,
198198
std::unique_ptr<InspectorSessionDelegate> delegate)
199199
: delegate_(std::move(delegate)) {
200200
session_ = inspector->connect(1, this, StringView());
201-
node_dispatcher_ = std::make_unique<protocol::UberDispatcher>(this);
202-
tracing_agent_ = std::make_unique<protocol::TracingAgent>(env);
201+
node_dispatcher_.reset(new protocol::UberDispatcher(this));
202+
tracing_agent_.reset(new protocol::TracingAgent(env));
203203
tracing_agent_->Wire(node_dispatcher_.get());
204204
}
205205

0 commit comments

Comments
 (0)
Please sign in to comment.