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

Side by Side Diff: components/proximity_auth/remote_device.h

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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H 5 #ifndef COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
6 #define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H 6 #define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
23 std::string sign_in_challenge; 23 std::string sign_in_challenge;
24 24
25 RemoteDevice(); 25 RemoteDevice();
26 RemoteDevice(const std::string& user_id, 26 RemoteDevice(const std::string& user_id,
27 const std::string& name, 27 const std::string& name,
28 const std::string& public_key, 28 const std::string& public_key,
29 BluetoothType bluetooth_type, 29 BluetoothType bluetooth_type,
30 const std::string& bluetooth_address, 30 const std::string& bluetooth_address,
31 const std::string& persistent_symmetric_key, 31 const std::string& persistent_symmetric_key,
32 std::string sign_in_challenge); 32 std::string sign_in_challenge);
33 RemoteDevice(const RemoteDevice& other);
33 ~RemoteDevice(); 34 ~RemoteDevice();
34 }; 35 };
35 36
36 typedef std::vector<RemoteDevice> RemoteDeviceList; 37 typedef std::vector<RemoteDevice> RemoteDeviceList;
37 38
38 } // namespace proximity_auth 39 } // namespace proximity_auth
39 40
40 #endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H 41 #endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698