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

Unified Diff: chromeos/network/network_util.h

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/client_cert_util.cc ('k') | chromeos/network/network_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_util.h
diff --git a/chromeos/network/network_util.h b/chromeos/network/network_util.h
index b8fee4547e179efb5552d70704bebeaff67d22cd..ef692d32af6cabcc712ffee5b22ce82b6beee2b4 100644
--- a/chromeos/network/network_util.h
+++ b/chromeos/network/network_util.h
@@ -33,6 +33,7 @@ class NetworkTypePattern;
// Struct for passing wifi access point data.
struct CHROMEOS_EXPORT WifiAccessPoint {
WifiAccessPoint();
+ WifiAccessPoint(const WifiAccessPoint& other);
~WifiAccessPoint();
std::string ssid; // The ssid of the WiFi node if available.
std::string mac_address; // The mac address of the WiFi node.
@@ -45,6 +46,7 @@ struct CHROMEOS_EXPORT WifiAccessPoint {
// Struct for passing network scan result data.
struct CHROMEOS_EXPORT CellularScanResult {
CellularScanResult();
+ CellularScanResult(const CellularScanResult& other);
~CellularScanResult();
std::string status; // The network's availability status. (One of "unknown",
// "available", "current", or "forbidden")
« no previous file with comments | « chromeos/network/client_cert_util.cc ('k') | chromeos/network/network_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698