| Index: components/sync/tools/sync_listen_notifications.cc
|
| diff --git a/components/sync/tools/sync_listen_notifications.cc b/components/sync/tools/sync_listen_notifications.cc
|
| index 7cbad69be5e6827129ed52d1bfac164d638fc671..3ea3de6344ac1776d053954972c4f12b1353e447 100644
|
| --- a/components/sync/tools/sync_listen_notifications.cc
|
| +++ b/components/sync/tools/sync_listen_notifications.cc
|
| @@ -101,7 +101,7 @@ class MyTestURLRequestContextGetter : public net::TestURLRequestContextGetter {
|
| // Construct |context_| lazily so it gets constructed on the right
|
| // thread (the IO thread).
|
| if (!context_)
|
| - context_.reset(new MyTestURLRequestContext());
|
| + context_ = base::MakeUnique<MyTestURLRequestContext>();
|
| return context_.get();
|
| }
|
|
|
|
|