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

Unified Diff: components/proximity_auth/ble/bluetooth_low_energy_connection.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/ble/bluetooth_low_energy_connection.cc
diff --git a/components/proximity_auth/ble/bluetooth_low_energy_connection.cc b/components/proximity_auth/ble/bluetooth_low_energy_connection.cc
index 13992be8c8366327c0879131d18ca0d9ea7f2b11..77a65b66b241b2e4abe44e22849156c7b160cc41 100644
--- a/components/proximity_auth/ble/bluetooth_low_energy_connection.cc
+++ b/components/proximity_auth/ble/bluetooth_low_energy_connection.cc
@@ -318,6 +318,9 @@ BluetoothLowEnergyConnection::WriteRequest::WriteRequest(
is_last_write_for_wire_message(flag),
number_of_failed_attempts(0) {}
+BluetoothLowEnergyConnection::WriteRequest::WriteRequest(
+ const WriteRequest& other) = default;
+
BluetoothLowEnergyConnection::WriteRequest::~WriteRequest() {}
void BluetoothLowEnergyConnection::CompleteConnection() {

Powered by Google App Engine
This is Rietveld 408576698