summaryrefslogtreecommitdiff
path: root/chromium/ipc/ipc_channel_mojo.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-09-01 11:08:40 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-01 12:16:21 +0000
commit03c549e0392f92c02536d3f86d5e1d8dfa3435ac (patch)
treefe49d170a929b34ba82cd10db1a0bd8e3760fa4b /chromium/ipc/ipc_channel_mojo.cc
parent5d013f5804a0d91fcf6c626b2d6fb6eca5c845b0 (diff)
downloadqtwebengine-chromium-03c549e0392f92c02536d3f86d5e1d8dfa3435ac.tar.gz
BASELINE: Update Chromium to 91.0.4472.160
Change-Id: I0def1f08a2412aeed79a9ab95dd50eb5c3f65f31 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/ipc/ipc_channel_mojo.cc')
-rw-r--r--chromium/ipc/ipc_channel_mojo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/ipc/ipc_channel_mojo.cc b/chromium/ipc/ipc_channel_mojo.cc
index d2db77cd693..730e20485ff 100644
--- a/chromium/ipc/ipc_channel_mojo.cc
+++ b/chromium/ipc/ipc_channel_mojo.cc
@@ -171,8 +171,8 @@ bool ChannelMojo::Connect() {
DCHECK(!message_reader_);
sender->SetPeerPid(GetSelfPID());
- message_reader_.reset(new internal::MessagePipeReader(
- pipe_, std::move(sender), std::move(receiver), this));
+ message_reader_ = std::make_unique<internal::MessagePipeReader>(
+ pipe_, std::move(sender), std::move(receiver), this);
return true;
}