summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2016-02-10 21:36:07 -0500
committerNico Weber <thakis@chromium.org>2016-02-11 02:37:46 +0000
commit03da4f8d7aadcdcfb70f7bc035af6691c78cc003 (patch)
tree4da3251bbd8cafc1009b3cfc45ecca55b531ec5f /device
parent7d5eb673efe5c93dbf303e75340ec70df15561a4 (diff)
downloadchromium_src-03da4f8d7aadcdcfb70f7bc035af6691c78cc003.zip
chromium_src-03da4f8d7aadcdcfb70f7bc035af6691c78cc003.tar.gz
chromium_src-03da4f8d7aadcdcfb70f7bc035af6691c78cc003.tar.bz2
Fix -Wreorder warning after https://codereview.chromium.org/1681853003/
BUG=82385,579202 TBR=scheib@chromium.org Review URL: https://codereview.chromium.org/1688803004 . Cr-Commit-Position: refs/heads/master@{#374843}
Diffstat (limited to 'device')
-rw-r--r--device/bluetooth/bluetooth_remote_gatt_service_win.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/device/bluetooth/bluetooth_remote_gatt_service_win.cc b/device/bluetooth/bluetooth_remote_gatt_service_win.cc
index 0c93588..7021703 100644
--- a/device/bluetooth/bluetooth_remote_gatt_service_win.cc
+++ b/device/bluetooth/bluetooth_remote_gatt_service_win.cc
@@ -13,8 +13,8 @@ BluetoothRemoteGattServiceWin::BluetoothRemoteGattServiceWin(
bool is_primary,
BluetoothRemoteGattServiceWin* parent_service,
scoped_refptr<base::SequencedTaskRunner>& ui_task_runner)
- : service_path_(service_path),
- device_(device),
+ : device_(device),
+ service_path_(service_path),
service_uuid_(service_uuid),
service_attribute_handle_(service_attribute_handle),
is_primary_(is_primary),
@@ -110,4 +110,4 @@ uint16_t BluetoothRemoteGattServiceWin::GetAttributeHandle() {
return service_attribute_handle_;
}
-} // namespace device. \ No newline at end of file
+} // namespace device.