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

Unified Diff: device/bluetooth/bluetooth_task_manager_win.cc

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 | « device/bluetooth/bluetooth_task_manager_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_task_manager_win.cc
diff --git a/device/bluetooth/bluetooth_task_manager_win.cc b/device/bluetooth/bluetooth_task_manager_win.cc
index 95b580a0402f7e1799e8895f59e7a64bcea317d1..7d8da089d6ef8f33f68d376e42963573631114cd 100644
--- a/device/bluetooth/bluetooth_task_manager_win.cc
+++ b/device/bluetooth/bluetooth_task_manager_win.cc
@@ -123,6 +123,28 @@ namespace device {
// static
const int BluetoothTaskManagerWin::kPollIntervalMs = 500;
+BluetoothTaskManagerWin::AdapterState::AdapterState() : powered(false) {
+}
+
+BluetoothTaskManagerWin::AdapterState::~AdapterState() {
+}
+
+BluetoothTaskManagerWin::ServiceRecordState::ServiceRecordState() {
+}
+
+BluetoothTaskManagerWin::ServiceRecordState::~ServiceRecordState() {
+}
+
+BluetoothTaskManagerWin::DeviceState::DeviceState()
+ : bluetooth_class(0),
+ visible(false),
+ connected(false),
+ authenticated(false) {
+}
+
+BluetoothTaskManagerWin::DeviceState::~DeviceState() {
+}
+
BluetoothTaskManagerWin::BluetoothTaskManagerWin(
scoped_refptr<base::SequencedTaskRunner> ui_task_runner)
: ui_task_runner_(ui_task_runner),
« no previous file with comments | « device/bluetooth/bluetooth_task_manager_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698