Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(835)

Unified Diff: components/omnibox/browser/url_index_private_data.cc

Issue 1728033002: components: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {
}

Powered by Google App Engine
This is Rietveld 408576698