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

Unified Diff: components/favicon/core/favicon_url.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/favicon/core/favicon_url.cc
diff --git a/components/favicon/core/favicon_url.cc b/components/favicon/core/favicon_url.cc
index 6957af6aeaade59b22de3bda387abf6eaa20c079..68bead858313c9782cd426a0fbfa2dda505e032d 100644
--- a/components/favicon/core/favicon_url.cc
+++ b/components/favicon/core/favicon_url.cc
@@ -15,6 +15,8 @@ FaviconURL::FaviconURL(const GURL& url,
: icon_url(url), icon_type(type), icon_sizes(sizes) {
}
+FaviconURL::FaviconURL(const FaviconURL& other) = default;
+
FaviconURL::~FaviconURL() {
}

Powered by Google App Engine
This is Rietveld 408576698