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

Unified Diff: device/bluetooth/bluetooth_task_manager_win.h

Issue 255943003: Add explicit constructors with field initializers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | device/bluetooth/bluetooth_task_manager_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_task_manager_win.h
diff --git a/device/bluetooth/bluetooth_task_manager_win.h b/device/bluetooth/bluetooth_task_manager_win.h
index 2c787d66ec4635fabccd5a0a33e20459406764ba..991e95c34a94b9ec7bc7c884881ab2a3a819416b 100644
--- a/device/bluetooth/bluetooth_task_manager_win.h
+++ b/device/bluetooth/bluetooth_task_manager_win.h
@@ -35,18 +35,24 @@ class BluetoothTaskManagerWin
: public base::RefCountedThreadSafe<BluetoothTaskManagerWin> {
public:
struct AdapterState {
+ AdapterState();
+ ~AdapterState();
std::string name;
std::string address;
bool powered;
};
struct ServiceRecordState {
+ ServiceRecordState();
+ ~ServiceRecordState();
std::string name;
std::string address;
std::vector<uint8> sdp_bytes;
};
struct DeviceState {
+ DeviceState();
+ ~DeviceState();
std::string name;
std::string address;
uint32 bluetooth_class;
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_task_manager_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698