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

Unified Diff: components/history/core/browser/url_row.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/history/core/browser/url_row.cc
diff --git a/components/history/core/browser/url_row.cc b/components/history/core/browser/url_row.cc
index 71c37258cb4957326f1f09d3d249ad136ad0778c..096672d5180f78d4a75e91607db9b47e846336f1 100644
--- a/components/history/core/browser/url_row.cc
+++ b/components/history/core/browser/url_row.cc
@@ -24,6 +24,8 @@ URLRow::URLRow(const GURL& url, URLID id) : url_(url) {
id_ = id;
}
+URLRow::URLRow(const URLRow& other) = default;
+
URLRow::~URLRow() {
}
@@ -79,6 +81,8 @@ URLResult::URLResult(const URLRow& url_row)
blocked_visit_(false) {
}
+URLResult::URLResult(const URLResult& other) = default;
+
URLResult::~URLResult() {
}

Powered by Google App Engine
This is Rietveld 408576698