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

Unified Diff: components/safe_browsing_db/util.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/safe_browsing_db/util.cc
diff --git a/components/safe_browsing_db/util.cc b/components/safe_browsing_db/util.cc
index 82ae16bd693c6b9f3676513c8a951d1e5e2b3b64..18dd9f88daebe45d854ea8fc152f0328c23dab86 100644
--- a/components/safe_browsing_db/util.cc
+++ b/components/safe_browsing_db/util.cc
@@ -37,6 +37,9 @@ SBCachedFullHashResult::SBCachedFullHashResult(
const base::Time& in_expire_after)
: expire_after(in_expire_after) {}
+SBCachedFullHashResult::SBCachedFullHashResult(
+ const SBCachedFullHashResult& other) = default;
+
SBCachedFullHashResult::~SBCachedFullHashResult() {}
// Listnames that browser can process.

Powered by Google App Engine
This is Rietveld 408576698