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

Unified Diff: components/proximity_auth/remote_device.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/proximity_auth/remote_device.cc
diff --git a/components/proximity_auth/remote_device.cc b/components/proximity_auth/remote_device.cc
index cabe7149dadf5ba183a9b7b2e8c8a3eef4fd69d5..cecf0239b8e1faa50b620eb280d2d23cbfd45db7 100644
--- a/components/proximity_auth/remote_device.cc
+++ b/components/proximity_auth/remote_device.cc
@@ -23,6 +23,8 @@ RemoteDevice::RemoteDevice(const std::string& user_id,
persistent_symmetric_key(persistent_symmetric_key),
sign_in_challenge(sign_in_challenge) {}
+RemoteDevice::RemoteDevice(const RemoteDevice& other) = default;
+
RemoteDevice::~RemoteDevice() {}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698