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

Unified Diff: chromeos/network/certificate_pattern.cc

Issue 1870833003: chromeos: 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, 8 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
« no previous file with comments | « chromeos/network/certificate_pattern.h ('k') | chromeos/network/client_cert_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/certificate_pattern.cc
diff --git a/chromeos/network/certificate_pattern.cc b/chromeos/network/certificate_pattern.cc
index eba1dfefdaeff8a7fd6045bc228216cd51bbf105..28c541aa39f24bf2073cf7aac5c86699a9c937b7 100644
--- a/chromeos/network/certificate_pattern.cc
+++ b/chromeos/network/certificate_pattern.cc
@@ -48,6 +48,9 @@ IssuerSubjectPattern::IssuerSubjectPattern(
IssuerSubjectPattern::IssuerSubjectPattern() {
}
+IssuerSubjectPattern::IssuerSubjectPattern(const IssuerSubjectPattern& other) =
+ default;
+
IssuerSubjectPattern::~IssuerSubjectPattern() {
}
@@ -82,6 +85,9 @@ void IssuerSubjectPattern::ReadFromONCDictionary(
CertificatePattern::CertificatePattern() {
}
+CertificatePattern::CertificatePattern(const CertificatePattern& other) =
+ default;
+
CertificatePattern::~CertificatePattern() {
}
« no previous file with comments | « chromeos/network/certificate_pattern.h ('k') | chromeos/network/client_cert_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698