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

Unified Diff: chromeos/network/network_util.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/network_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_util.cc
diff --git a/chromeos/network/network_util.cc b/chromeos/network/network_util.cc
index ebaef5137fd0c920a45724dc34b14343ef169ebe..7ec940b9824b6b60250cb4be69b8da38f2777541 100644
--- a/chromeos/network/network_util.cc
+++ b/chromeos/network/network_util.cc
@@ -29,12 +29,17 @@ WifiAccessPoint::WifiAccessPoint()
channel(0) {
}
+WifiAccessPoint::WifiAccessPoint(const WifiAccessPoint& other) = default;
+
WifiAccessPoint::~WifiAccessPoint() {
}
CellularScanResult::CellularScanResult() {
}
+CellularScanResult::CellularScanResult(const CellularScanResult& other) =
+ default;
+
CellularScanResult::~CellularScanResult() {
}
« no previous file with comments | « chromeos/network/network_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698