| Index: components/omnibox/browser/url_index_private_data.cc
|
| diff --git a/components/omnibox/browser/url_index_private_data.cc b/components/omnibox/browser/url_index_private_data.cc
|
| index 4657273b2c3fa67e211720c7ce24f382ca7e625e..6c5eb1a05ffb2c16b53b6f16e65004b56b0f30d5 100644
|
| --- a/components/omnibox/browser/url_index_private_data.cc
|
| +++ b/components/omnibox/browser/url_index_private_data.cc
|
| @@ -1267,6 +1267,9 @@ URLIndexPrivateData::SearchTermCacheItem::SearchTermCacheItem(
|
| URLIndexPrivateData::SearchTermCacheItem::SearchTermCacheItem() : used_(true) {
|
| }
|
|
|
| +URLIndexPrivateData::SearchTermCacheItem::SearchTermCacheItem(
|
| + const SearchTermCacheItem& other) = default;
|
| +
|
| URLIndexPrivateData::SearchTermCacheItem::~SearchTermCacheItem() {
|
| }
|
|
|
| @@ -1304,6 +1307,9 @@ URLIndexPrivateData::AddHistoryMatch::AddHistoryMatch(
|
| }
|
| }
|
|
|
| +URLIndexPrivateData::AddHistoryMatch::AddHistoryMatch(
|
| + const AddHistoryMatch& other) = default;
|
| +
|
| URLIndexPrivateData::AddHistoryMatch::~AddHistoryMatch() {
|
| }
|
|
|
|
|