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

Issue 1749403002: Implement BluetoothRemoteGattCharacteristicWin::StartNotifySession and related unit tests (Closed)

Created:
4 years, 9 months ago by gogerald1
Modified:
4 years, 8 months ago
Reviewers:
scheib, ortuno
CC:
chromium-reviews, ortuno+watch_chromium.org, scheib+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement BluetoothRemoteGattCharacteristicWin::StartNotifySession and related unit tests. This CL implements BluetoothRemoteGattCharacteristicWin::StartNotifySession and related unit tests. It also fixes implicit cast between semantically different integer types issue. In addition, it moves gatt_notify_characteristic_attempts_, gatt_write_characteristic_attempts_, and gatt_read_characteristic_attempts_ check immediately after an operation in bluetooth_gatt_characteristic_unittest.cc to after simulate operation since the operation is asynchronous down to the OS on Windows. BUG=579202, 592843, 427616, 597888 Committed: https://crrev.com/08539daf0b416e5cebf3109119f4c9e6beb09d54 Cr-Commit-Position: refs/heads/master@{#386150}

Patch Set 1 : #

Patch Set 2 : #

Patch Set 3 : adjust comments #

Total comments: 53

Patch Set 4 : check read/write attempts later #

Patch Set 5 : #

Patch Set 6 : address comments #

Total comments: 8

Patch Set 7 : add more unit tests #

Total comments: 13

Patch Set 8 : Move characteristic value changed notification to BluetoothTaskManager to solve multithread problem #

Patch Set 9 : Split out BluetoothGattNotifySessionWin::Stop #

Patch Set 10 : change new_value->at(i) to (*new_value)[i] #

Total comments: 16

Patch Set 11 : address comments #

Patch Set 12 : #

Patch Set 13 : rebase #

Total comments: 37

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : add one more note #

Patch Set 17 : Enable RememberCharacteristicForSubsequentAction and related tests #

Total comments: 8

Patch Set 18 : address comments #

Patch Set 19 : set CCCD #

Patch Set 20 : rebase #

Total comments: 24

Patch Set 21 : address comments #

Total comments: 2

Patch Set 22 : use static_cast #

Total comments: 20

Patch Set 23 : address comments #

Total comments: 2

Patch Set 24 : move comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+686 lines, -74 lines) Patch
M device/bluetooth/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_device_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +9 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_characteristic_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 chunks +37 lines, -30 lines 0 comments Download
A device/bluetooth/bluetooth_gatt_notify_session_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +35 lines, -0 lines 0 comments Download
A device/bluetooth/bluetooth_gatt_notify_session_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +28 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_low_energy_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +19 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_low_energy_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +32 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_low_energy_win_fake.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 8 chunks +39 lines, -1 line 0 comments Download
M device/bluetooth/bluetooth_low_energy_win_fake.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 10 chunks +115 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +14 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 7 chunks +110 lines, -6 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_descriptor_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +3 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_service_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_task_manager_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +26 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_task_manager_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 4 chunks +147 lines, -4 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +9 lines, -8 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 7 chunks +56 lines, -18 lines 0 comments Download

Messages

Total messages: 158 (81 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/100001
4 years, 9 months ago (2016-03-04 22:24:20 UTC) #5
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/120001
4 years, 9 months ago (2016-03-04 23:16:29 UTC) #9
gogerald1
Hi Vincent, PTAL.
4 years, 9 months ago (2016-03-04 23:20:59 UTC) #11
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-05 00:29:03 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/140001
4 years, 9 months ago (2016-03-05 19:57:55 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/160001
4 years, 9 months ago (2016-03-05 20:06:51 UTC) #17
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-05 23:25:06 UTC) #19
ortuno
I did a first pass. https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode933 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:933: #endif // defined(OS_ANDROID) || ...
4 years, 9 months ago (2016-03-07 18:48:45 UTC) #21
gogerald1
Thanks for doing a fist pass. https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode933 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:933: #endif // defined(OS_ANDROID) ...
4 years, 9 months ago (2016-03-07 22:52:49 UTC) #22
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/180001
4 years, 9 months ago (2016-03-07 23:04:18 UTC) #24
ortuno
https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_low_energy_win.cc File device/bluetooth/bluetooth_low_energy_win.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_low_energy_win.cc#newcode847 device/bluetooth/bluetooth_low_energy_win.cc:847: base::File file(service_path, base::File::FLAG_OPEN | base::File::FLAG_READ); On 2016/03/07 at 22:52:49, ...
4 years, 9 months ago (2016-03-08 00:05:36 UTC) #25
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/34642)
4 years, 9 months ago (2016-03-08 01:17:57 UTC) #27
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/200001
4 years, 9 months ago (2016-03-08 17:56:37 UTC) #29
scheib
https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode188 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:188: gatt_event_registeration_in_progress_ = true; On 2016/03/08 00:05:36, ortuno wrote: > ...
4 years, 9 months ago (2016-03-08 18:30:07 UTC) #30
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-08 19:17:35 UTC) #32
gogerald1
https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode21 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:21: (device::BluetoothRemoteGattCharacteristicWin*)context; On 2016/03/08 00:05:36, ortuno wrote: > On 2016/03/07 ...
4 years, 9 months ago (2016-03-08 19:22:24 UTC) #33
ortuno
https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode188 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:188: gatt_event_registeration_in_progress_ = true; On 2016/03/08 at 19:22:23, gogerald1 wrote: ...
4 years, 9 months ago (2016-03-09 16:54:00 UTC) #37
ortuno
https://codereview.chromium.org/1749403002/diff/200001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/200001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode181 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:181: You should check that the characteristic supports notifications or ...
4 years, 9 months ago (2016-03-09 16:54:00 UTC) #38
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/260001
4 years, 9 months ago (2016-03-09 23:53:27 UTC) #42
gogerald1
https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/120001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode188 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:188: gatt_event_registeration_in_progress_ = true; On 2016/03/09 16:53:59, ortuno wrote: > ...
4 years, 9 months ago (2016-03-09 23:59:12 UTC) #43
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-10 04:07:13 UTC) #45
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/290001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/290001
4 years, 9 months ago (2016-03-10 15:47:42 UTC) #48
gogerald1
I split out BluetoothGattNotifySessionWin::Stop for now to give more time to design unit tests properly.
4 years, 9 months ago (2016-03-10 15:55:26 UTC) #49
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/310001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/310001
4 years, 9 months ago (2016-03-10 16:05:29 UTC) #51
gogerald1
https://codereview.chromium.org/1749403002/diff/180001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/180001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode255 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:255: new_value->at(i) = new_value_win->Data[i]; On 2016/03/09 16:53:59, ortuno wrote: > ...
4 years, 9 months ago (2016-03-10 16:10:54 UTC) #52
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_asan_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_asan_rel_ng/builds/128693)
4 years, 9 months ago (2016-03-10 17:29:45 UTC) #54
ortuno
@scheib: I left a question for you. PTAL. @gogerald: You should open a different issue ...
4 years, 9 months ago (2016-03-14 01:37:38 UTC) #55
scheib
https://codereview.chromium.org/1749403002/diff/180001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc File device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc (right): https://codereview.chromium.org/1749403002/diff/180001/device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc#newcode255 device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc:255: new_value->at(i) = new_value_win->Data[i]; On 2016/03/14 01:37:37, ortuno wrote: > ...
4 years, 9 months ago (2016-03-14 17:54:46 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/390001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/390001
4 years, 9 months ago (2016-03-15 00:11:41 UTC) #74
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/4406) mac_chromium_gn_rel on ...
4 years, 9 months ago (2016-03-15 00:13:46 UTC) #76
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/430001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/430001
4 years, 9 months ago (2016-03-15 00:46:01 UTC) #78
gogerald1
PTAL https://codereview.chromium.org/1749403002/diff/200001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/200001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode1077 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:1077: #endif // defined(OS_WIN) On 2016/03/14 01:37:37, ortuno wrote: ...
4 years, 9 months ago (2016-03-15 00:48:19 UTC) #79
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_ng/builds/63968) linux_chromium_rel_ng on ...
4 years, 9 months ago (2016-03-15 01:18:04 UTC) #81
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/450001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/450001
4 years, 9 months ago (2016-03-15 01:36:09 UTC) #83
ortuno
One test and a couple of minor things. Almost there! https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode766 ...
4 years, 9 months ago (2016-03-15 02:55:31 UTC) #84
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-15 03:01:53 UTC) #86
gogerald1
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode766 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:766: #ifndef OS_ANDROID On 2016/03/15 02:55:31, ortuno wrote: > I ...
4 years, 9 months ago (2016-03-15 18:28:23 UTC) #88
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/470001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/470001
4 years, 9 months ago (2016-03-15 18:28:35 UTC) #89
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-15 19:52:43 UTC) #91
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/490001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/490001
4 years, 9 months ago (2016-03-17 14:07:46 UTC) #93
gogerald1
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_low_energy_win.h File device/bluetooth/bluetooth_low_energy_win.h (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_low_energy_win.h#newcode183 device/bluetooth/bluetooth_low_energy_win.h:183: // unique handle in OS for this registration. On ...
4 years, 9 months ago (2016-03-17 14:07:57 UTC) #94
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-17 15:52:22 UTC) #96
gogerald1
Friendly ping reviewers,
4 years, 9 months ago (2016-03-18 14:15:27 UTC) #97
scheib
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode927 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:927: // being destroyed. On 2016/03/15 18:28:22, gogerald1 wrote: > ...
4 years, 9 months ago (2016-03-19 04:57:54 UTC) #98
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/510001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/510001
4 years, 9 months ago (2016-03-19 20:08:47 UTC) #100
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-20 01:01:39 UTC) #102
gogerald1
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode927 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:927: // being destroyed. On 2016/03/19 04:57:54, scheib OOO wrote: ...
4 years, 9 months ago (2016-03-21 14:22:22 UTC) #103
ortuno
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode927 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:927: // being destroyed. On 2016/03/21 at 14:22:22, gogerald1 wrote: ...
4 years, 9 months ago (2016-03-21 17:00:53 UTC) #104
gogerald1
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode927 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:927: // being destroyed. On 2016/03/21 17:00:52, ortuno wrote: > ...
4 years, 9 months ago (2016-03-21 22:09:16 UTC) #106
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/530001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/530001
4 years, 9 months ago (2016-03-21 22:09:28 UTC) #107
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-22 00:30:48 UTC) #109
ortuno
https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/430001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode927 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:927: // being destroyed. On 2016/03/21 at 22:09:16, gogerald1 wrote: ...
4 years, 9 months ago (2016-03-22 15:02:24 UTC) #110
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/570001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/570001
4 years, 8 months ago (2016-03-28 23:01:09 UTC) #114
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/10020) ios_dbg_simulator_ninja on ...
4 years, 8 months ago (2016-03-28 23:05:01 UTC) #116
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/610001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/610001
4 years, 8 months ago (2016-03-29 15:02:29 UTC) #119
gogerald1
Noticed two new tests have been added for StartNotifySession, enable them in the upcoming CL ...
4 years, 8 months ago (2016-03-29 15:12:00 UTC) #120
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-03-29 16:14:55 UTC) #122
ortuno
https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc File device/bluetooth/bluetooth_device_win.cc (right): https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc#newcode46 device/bluetooth/bluetooth_device_win.cc:46: // Explicitly take and erase GATT services one by ...
4 years, 8 months ago (2016-03-30 22:34:24 UTC) #123
gogerald1
https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc File device/bluetooth/bluetooth_device_win.cc (right): https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc#newcode46 device/bluetooth/bluetooth_device_win.cc:46: // Explicitly take and erase GATT services one by ...
4 years, 8 months ago (2016-03-31 17:44:13 UTC) #125
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/650001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/650001
4 years, 8 months ago (2016-03-31 17:44:46 UTC) #127
ortuno
lgtm bar one small cast and the condition that you add the Failed to Write ...
4 years, 8 months ago (2016-03-31 18:09:20 UTC) #128
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/204761)
4 years, 8 months ago (2016-03-31 19:05:04 UTC) #130
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/670001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/670001
4 years, 8 months ago (2016-04-04 23:31:38 UTC) #132
gogerald1
https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc File device/bluetooth/bluetooth_device_win.cc (right): https://codereview.chromium.org/1749403002/diff/610001/device/bluetooth/bluetooth_device_win.cc#newcode46 device/bluetooth/bluetooth_device_win.cc:46: // Explicitly take and erase GATT services one by ...
4 years, 8 months ago (2016-04-04 23:34:00 UTC) #133
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-05 01:16:16 UTC) #135
scheib
In change description: > It also fixes implicit cast between semantically different integer types issue. ...
4 years, 8 months ago (2016-04-05 22:44:03 UTC) #136
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/710001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/710001
4 years, 8 months ago (2016-04-06 20:49:10 UTC) #139
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/730001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/730001
4 years, 8 months ago (2016-04-06 21:04:32 UTC) #142
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/208221)
4 years, 8 months ago (2016-04-06 22:50:42 UTC) #144
gogerald1
https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc File device/bluetooth/bluetooth_gatt_characteristic_unittest.cc (right): https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_gatt_characteristic_unittest.cc#newcode825 device/bluetooth/bluetooth_gatt_characteristic_unittest.cc:825: // Windows: Characteristic notification is set to OS asynchronously. ...
4 years, 8 months ago (2016-04-06 22:54:48 UTC) #145
scheib
LGTM, though please move the threading comment: https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_task_manager_win.cc File device/bluetooth/bluetooth_task_manager_win.cc (right): https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_task_manager_win.cc#newcode928 device/bluetooth/bluetooth_task_manager_win.cc:928: characteristic_value_changed_registrations[user_event_handle] = ...
4 years, 8 months ago (2016-04-06 23:56:39 UTC) #146
gogerald1
https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_task_manager_win.cc File device/bluetooth/bluetooth_task_manager_win.cc (right): https://codereview.chromium.org/1749403002/diff/670001/device/bluetooth/bluetooth_task_manager_win.cc#newcode928 device/bluetooth/bluetooth_task_manager_win.cc:928: characteristic_value_changed_registrations[user_event_handle] = On 2016/04/06 23:56:39, scheib wrote: > On ...
4 years, 8 months ago (2016-04-08 17:03:31 UTC) #147
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/750001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/750001
4 years, 8 months ago (2016-04-08 17:04:03 UTC) #150
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/193929)
4 years, 8 months ago (2016-04-08 18:13:14 UTC) #152
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1749403002/750001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1749403002/750001
4 years, 8 months ago (2016-04-08 18:18:49 UTC) #154
commit-bot: I haz the power
Committed patchset #24 (id:750001)
4 years, 8 months ago (2016-04-08 18:51:59 UTC) #156
commit-bot: I haz the power
4 years, 8 months ago (2016-04-08 18:53:39 UTC) #158
Message was sent while issue was closed.
Patchset 24 (id:??) landed as
https://crrev.com/08539daf0b416e5cebf3109119f4c9e6beb09d54
Cr-Commit-Position: refs/heads/master@{#386150}

Powered by Google App Engine
This is Rietveld 408576698