| Index: chrome/browser/browsing_data/browsing_data_channel_id_helper_unittest.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_channel_id_helper_unittest.cc b/chrome/browser/browsing_data/browsing_data_channel_id_helper_unittest.cc
|
| index efbdcd3ba1da1e211812ae594070736871f1e912..87dcd904d693bc3b54986b9dd83fd23c3125dbc2 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_channel_id_helper_unittest.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_channel_id_helper_unittest.cc
|
| @@ -42,13 +42,13 @@ class BrowsingDataChannelIDHelperTest
|
| net::ChannelIDStore* channel_id_store =
|
| context->channel_id_service()->GetChannelIDStore();
|
| channel_id_store->SetChannelID(
|
| - base::WrapUnique(new net::ChannelIDStore::ChannelID(
|
| + base::MakeUnique<net::ChannelIDStore::ChannelID>(
|
| "https://www.google.com:443", base::Time(),
|
| - crypto::ECPrivateKey::Create())));
|
| + crypto::ECPrivateKey::Create()));
|
| channel_id_store->SetChannelID(
|
| - base::WrapUnique(new net::ChannelIDStore::ChannelID(
|
| + base::MakeUnique<net::ChannelIDStore::ChannelID>(
|
| "https://www.youtube.com:443", base::Time(),
|
| - crypto::ECPrivateKey::Create())));
|
| + crypto::ECPrivateKey::Create()));
|
| }
|
|
|
| void FetchCallback(
|
|
|