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

Unified Diff: components/favicon_base/favicon_types.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_base/favicon_types.cc
diff --git a/components/favicon_base/favicon_types.cc b/components/favicon_base/favicon_types.cc
index 2ed5eb062c694b23a689f31f42f1c936999f9004..8699c4387f4e85d79ee908b8dff3edccc52d268c 100644
--- a/components/favicon_base/favicon_types.cc
+++ b/components/favicon_base/favicon_types.cc
@@ -22,6 +22,9 @@ FaviconRawBitmapResult::FaviconRawBitmapResult()
: expired(false), icon_type(INVALID_ICON) {
}
+FaviconRawBitmapResult::FaviconRawBitmapResult(
+ const FaviconRawBitmapResult& other) = default;
+
FaviconRawBitmapResult::~FaviconRawBitmapResult() {}
// --------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698