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

Issue 1898643002: Refactor device::BluetoothGattXXX classes to split into remote/local. (Closed)

Created:
4 years, 8 months ago by rkc
Modified:
4 years, 8 months ago
CC:
chromium-apps-reviews_chromium.org, chromium-reviews, darin-cc_chromium.org, extensions-reviews_chromium.org, jam, jochen+watch_chromium.org, mkwst+moarreviews-shell_chromium.org, mlamouri+watch-content_chromium.org, mlamouri+watch-test-runner_chromium.org, ortuno+watch_chromium.org, Peter Beverloo, 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

Refactor device::BluetoothGattXXX classes to split into remote/local. Currently we have only one type of BluetoothGattService, BluetoothGattCharacterstic and BluetoothGattDescriptor. Each of these objects have significantly divergent functionality depending on whether they are objects representing a remote or local version. For example, ReadRemoteValue or WriteRemoteValue makes no sense on a local characteristic. Similarly, delegates for receiving read/write requests for characteristics and descriptors doesn't make any sense for a remote service. Trying to accomodate this led to very ugly code with lots of NOTIMPLEMENTED()s, varying implementations of the same code and a lot of repeated but unused code. Seperating these out into remote and local interfaces allows us to have platform specific implementations which only contain code relevant to remote and local objects (with common implementation deriving the common interface). This is just a refactor with no actual code change. To keep reviewing easier, any fixes to the code that is being moved around is being reserved for other CLs. This CL also moves all BlueZ specific code into its own directory. We should do the same for other platforms too so the //device/bluetooth directory isn't as crowded. Reviews requested, OWNERS (should most probably be rubberstamps), chrome/browser/extensions/api/* - rockot components/arc/bluetooth/* - elijahtaylor,lhchavez components/proximity_auth/* - tbarzic scheib/ortuno for the general review. R=elijahtaylor@chromium.org, lhchavez@chromium.org, ortuno@chromium.org, rockot@chromium.org, scheib@chromium.org, tbarzic@chromium.org BUG=601935 Committed: https://crrev.com/1222397542d62a15aa133930d7ef311223a6e5e0 Cr-Commit-Position: refs/heads/master@{#388604}

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Patch Set 3 : Android/Win fixes. #

Patch Set 4 : #

Patch Set 5 : minor cleanup #

Total comments: 28

Patch Set 6 : #

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1949 lines, -20283 lines) Patch
M chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc View 1 2 3 4 5 6 21 chunks +89 lines, -94 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h View 1 2 3 4 5 6 7 chunks +33 lines, -27 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc View 1 2 3 4 5 6 39 chunks +99 lines, -88 lines 0 comments Download
M components/arc/bluetooth/arc_bluetooth_bridge.h View 1 2 3 4 5 6 2 chunks +16 lines, -15 lines 0 comments Download
M components/arc/bluetooth/arc_bluetooth_bridge.cc View 1 2 3 4 5 6 3 chunks +21 lines, -19 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h View 1 2 3 4 5 6 6 chunks +9 lines, -8 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.cc View 1 2 3 4 5 6 7 chunks +12 lines, -11 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder_unittest.cc View 1 2 3 4 5 6 4 chunks +11 lines, -9 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_connection.h View 1 2 3 4 5 6 6 chunks +9 lines, -7 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_connection.cc View 1 2 3 4 5 6 8 chunks +12 lines, -12 lines 0 comments Download
M components/proximity_auth/ble/bluetooth_low_energy_connection_unittest.cc View 1 2 3 4 5 6 6 chunks +14 lines, -13 lines 0 comments Download
M content/browser/bluetooth/bluetooth_dispatcher_host.h View 1 2 3 4 5 6 3 chunks +4 lines, -4 lines 0 comments Download
M content/browser/bluetooth/bluetooth_dispatcher_host.cc View 1 2 3 4 5 6 7 chunks +13 lines, -13 lines 0 comments Download
M content/browser/bluetooth/web_bluetooth_service_impl.h View 1 2 3 4 5 6 3 chunks +9 lines, -9 lines 0 comments Download
M content/browser/bluetooth/web_bluetooth_service_impl.cc View 1 2 3 4 5 6 6 chunks +18 lines, -18 lines 0 comments Download
M content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h View 1 2 3 4 5 6 7 chunks +23 lines, -23 lines 0 comments Download
M content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc View 1 2 3 4 5 6 14 chunks +31 lines, -30 lines 0 comments Download
M device/BUILD.gn View 1 2 3 4 5 6 2 chunks +9 lines, -9 lines 0 comments Download
M device/bluetooth/BUILD.gn View 1 2 3 4 5 6 3 chunks +48 lines, -32 lines 0 comments Download
M device/bluetooth/bluetooth.gyp View 1 2 3 4 5 6 3 chunks +48 lines, -32 lines 0 comments Download
M device/bluetooth/bluetooth_adapter.h View 1 2 3 4 5 6 6 chunks +33 lines, -30 lines 0 comments Download
M device/bluetooth/bluetooth_adapter.cc View 1 2 3 4 5 6 9 chunks +16 lines, -13 lines 0 comments Download
D device/bluetooth/bluetooth_adapter_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -399 lines 0 comments Download
D device/bluetooth/bluetooth_adapter_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -1458 lines 0 comments Download
D device/bluetooth/bluetooth_adapter_profile_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -117 lines 0 comments Download
D device/bluetooth/bluetooth_adapter_profile_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -162 lines 0 comments Download
D device/bluetooth/bluetooth_adapter_profile_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -390 lines 0 comments Download
D device/bluetooth/bluetooth_advertisement_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -64 lines 0 comments Download
D device/bluetooth/bluetooth_advertisement_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -139 lines 0 comments Download
D device/bluetooth/bluetooth_advertisement_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -249 lines 0 comments Download
D device/bluetooth/bluetooth_audio_sink_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -224 lines 0 comments Download
D device/bluetooth/bluetooth_audio_sink_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -570 lines 0 comments Download
D device/bluetooth/bluetooth_audio_sink_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -957 lines 0 comments Download
D device/bluetooth/bluetooth_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -4490 lines 0 comments Download
M device/bluetooth/bluetooth_device.h View 1 2 3 4 5 6 3 chunks +5 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_device.cc View 1 2 3 4 5 6 2 chunks +5 lines, -5 lines 0 comments Download
D device/bluetooth/bluetooth_device_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -221 lines 0 comments Download
D device/bluetooth/bluetooth_device_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -785 lines 0 comments Download
M device/bluetooth/bluetooth_device_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M device/bluetooth/bluetooth_device_win.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M device/bluetooth/bluetooth_device_win.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -1301 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_characteristic.h View 1 2 3 4 5 6 4 chunks +3 lines, -126 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_characteristic.cc View 1 2 3 4 5 6 1 chunk +2 lines, -28 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_characteristic_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -79 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -54 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_characteristic_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -1109 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_connection_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -59 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_connection_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -99 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_descriptor.h View 1 2 3 4 5 6 4 chunks +4 lines, -58 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_descriptor.cc View 1 2 3 4 5 6 2 chunks +0 lines, -13 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_descriptor_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -83 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_descriptor_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -130 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_descriptor_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -599 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_notify_session.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
D device/bluetooth/bluetooth_gatt_notify_session_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -78 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_notify_session_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -134 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_service.h View 1 2 3 4 5 6 5 chunks +1 line, -167 lines 0 comments Download
M device/bluetooth/bluetooth_gatt_service.cc View 1 2 3 4 5 6 2 chunks +0 lines, -11 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_service_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -81 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_service_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -91 lines 0 comments Download
D device/bluetooth/bluetooth_gatt_service_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -239 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_characteristic.h View 1 2 3 4 5 6 1 chunk +43 lines, -49 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_characteristic.cc View 1 2 3 4 5 6 1 chunk +11 lines, -10 lines 0 comments Download
D device/bluetooth/bluetooth_local_gatt_characteristic_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -68 lines 0 comments Download
D device/bluetooth/bluetooth_local_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -90 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_descriptor.h View 1 2 3 4 5 6 1 chunk +44 lines, -33 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_descriptor.cc View 1 2 3 4 5 6 1 chunk +10 lines, -10 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_service.h View 1 2 3 4 5 6 6 chunks +39 lines, -102 lines 0 comments Download
A + device/bluetooth/bluetooth_local_gatt_service.cc View 1 2 3 4 5 6 1 chunk +7 lines, -8 lines 0 comments Download
D device/bluetooth/bluetooth_local_gatt_service_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -69 lines 0 comments Download
D device/bluetooth/bluetooth_local_gatt_service_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -90 lines 0 comments Download
D device/bluetooth/bluetooth_pairing_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -151 lines 0 comments Download
D device/bluetooth/bluetooth_pairing_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -272 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_characteristic.h View 1 2 3 4 5 6 4 chunks +27 lines, -138 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_characteristic.cc View 1 2 3 4 5 6 1 chunk +17 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_android.h View 1 2 3 4 5 6 4 chunks +9 lines, -10 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc View 1 2 3 4 5 6 11 chunks +30 lines, -41 lines 0 comments Download
D device/bluetooth/bluetooth_remote_gatt_characteristic_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -131 lines 0 comments Download
D device/bluetooth/bluetooth_remote_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -450 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_characteristic_unittest.cc View 1 2 3 4 5 6 53 chunks +116 lines, -103 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_win.h View 1 2 3 4 5 6 4 chunks +10 lines, -11 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc View 1 2 3 4 5 6 9 chunks +33 lines, -44 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_descriptor.h View 1 2 3 4 5 6 3 chunks +21 lines, -142 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_descriptor.cc View 1 2 3 4 5 6 1 chunk +11 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_descriptor_android.h View 1 2 3 4 5 6 3 chunks +7 lines, -6 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_descriptor_android.cc View 1 2 3 4 5 6 3 chunks +8 lines, -10 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_descriptor_unittest.cc View 1 2 3 4 5 6 32 chunks +66 lines, -60 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_descriptor_win.h View 1 2 3 4 5 6 4 chunks +8 lines, -7 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_descriptor_win.cc View 1 2 3 4 5 6 3 chunks +4 lines, -8 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_service.h View 1 2 3 4 5 6 1 chunk +40 lines, -57 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_service.cc View 1 2 3 4 5 6 1 chunk +3 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_service_android.h View 1 2 3 4 5 6 3 chunks +11 lines, -19 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_service_android.cc View 1 2 3 4 5 6 5 chunks +10 lines, -36 lines 0 comments Download
D device/bluetooth/bluetooth_remote_gatt_service_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -116 lines 0 comments Download
D device/bluetooth/bluetooth_remote_gatt_service_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -272 lines 0 comments Download
A + device/bluetooth/bluetooth_remote_gatt_service_unittest.cc View 1 2 3 4 5 6 11 chunks +19 lines, -17 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_service_win.h View 1 2 3 4 5 6 3 chunks +8 lines, -14 lines 0 comments Download
M device/bluetooth/bluetooth_remote_gatt_service_win.cc View 1 2 3 4 5 6 3 chunks +6 lines, -35 lines 0 comments Download
D device/bluetooth/bluetooth_socket_bluez.h View 1 2 3 4 5 6 1 chunk +0 lines, -201 lines 0 comments Download
D device/bluetooth/bluetooth_socket_bluez.cc View 1 2 3 4 5 6 1 chunk +0 lines, -542 lines 0 comments Download
D device/bluetooth/bluetooth_socket_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +0 lines, -635 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_adapter_bluez.h View 1 2 3 4 5 6 3 chunks +5 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_adapter_bluez.cc View 1 2 3 4 5 6 2 chunks +7 lines, -7 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_adapter_profile_bluez.h View 1 2 3 4 5 6 3 chunks +4 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_adapter_profile_bluez.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_adapter_profile_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_advertisement_bluez.h View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_advertisement_bluez.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_advertisement_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
A + device/bluetooth/bluez/bluetooth_audio_sink_bluez.h View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_audio_sink_bluez.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_audio_sink_bluez_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
A + device/bluetooth/bluez/bluetooth_bluez_unittest.cc View 1 2 3 4 5 6 6 chunks +10 lines, -10 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_device_bluez.h View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_device_bluez.cc View 1 2 3 4 5 6 5 chunks +9 lines, -9 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_bluez_unittest.cc View 1 2 3 4 5 6 33 chunks +77 lines, -72 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_characteristic_bluez.h View 1 2 3 4 5 6 2 chunks +7 lines, -39 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 2 chunks +4 lines, -36 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_connection_bluez.h View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_connection_bluez.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_descriptor_bluez.h View 1 2 3 4 5 6 2 chunks +11 lines, -46 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_descriptor_bluez.cc View 1 2 3 4 5 6 1 chunk +11 lines, -7 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_notify_session_bluez.h View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_notify_session_bluez.cc View 1 2 3 4 5 6 2 chunks +6 lines, -5 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_service_bluez.h View 1 2 3 4 5 6 4 chunks +4 lines, -27 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_gatt_service_bluez.cc View 1 2 3 4 5 6 2 chunks +2 lines, -29 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h View 1 2 3 4 5 6 2 chunks +9 lines, -36 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 1 chunk +13 lines, -14 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_descriptor_bluez.h View 1 2 3 4 5 6 1 chunk +17 lines, -48 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_descriptor_bluez.cc View 1 2 3 4 5 6 1 chunk +12 lines, -7 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.h View 1 2 3 4 5 6 4 chunks +9 lines, -15 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.cc View 1 2 3 4 5 6 2 chunks +3 lines, -33 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_pairing_bluez.h View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_pairing_bluez.cc View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.h View 1 2 3 4 5 6 4 chunks +37 lines, -14 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_characteristic_bluez.cc View 1 2 3 4 5 6 9 chunks +54 lines, -39 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_descriptor_bluez.h View 1 2 3 4 5 6 3 chunks +24 lines, -38 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_descriptor_bluez.cc View 1 2 3 4 5 6 5 chunks +32 lines, -38 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_service_bluez.h View 1 2 3 4 5 6 7 chunks +32 lines, -21 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_remote_gatt_service_bluez.cc View 1 2 3 4 5 6 6 chunks +30 lines, -38 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_socket_bluez.h View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_socket_bluez.cc View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A + device/bluetooth/bluez/bluetooth_socket_bluez_unittest.cc View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
M device/bluetooth/test/bluetooth_test.h View 1 2 3 4 5 6 8 chunks +41 lines, -38 lines 0 comments Download
M device/bluetooth/test/bluetooth_test.cc View 1 2 3 4 5 6 4 chunks +4 lines, -4 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_android.h View 1 2 3 4 5 6 2 chunks +27 lines, -27 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_android.cc View 1 2 3 4 5 6 20 chunks +30 lines, -30 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_bluez.cc View 1 2 3 4 5 6 1 chunk +5 lines, -5 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_win.h View 1 2 3 4 5 6 2 chunks +16 lines, -16 lines 0 comments Download
M device/bluetooth/test/bluetooth_test_win.cc View 1 2 3 4 5 6 12 chunks +31 lines, -28 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_device.h View 1 2 3 4 5 6 3 chunks +8 lines, -5 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_device.cc View 1 2 3 4 5 6 2 chunks +6 lines, -6 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_characteristic.h View 1 2 3 4 5 6 2 chunks +10 lines, -8 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_descriptor.h View 1 2 3 4 5 6 2 chunks +9 lines, -6 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_service.h View 1 2 3 4 5 6 3 chunks +13 lines, -11 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_gatt_service.cc View 1 2 3 4 5 6 2 chunks +12 lines, -8 lines 0 comments Download
M device/bluetooth/test/test_bluetooth_adapter_observer.h View 1 2 3 4 5 6 3 chunks +17 lines, -15 lines 0 comments Download
M device/bluetooth/test/test_bluetooth_adapter_observer.cc View 1 2 3 4 5 6 13 chunks +13 lines, -15 lines 0 comments Download
M device/device_tests.gyp View 1 2 3 4 5 6 2 chunks +9 lines, -9 lines 0 comments Download

Messages

Total messages: 47 (22 generated)
rkc
4 years, 8 months ago (2016-04-18 02:34:47 UTC) #1
Ken Rockot(use gerrit already)
c/b/e LGTM
4 years, 8 months ago (2016-04-18 15:23:05 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/1898643002/10001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/10001
4 years, 8 months ago (2016-04-18 20:01:05 UTC) #7
Luis Héctor Chávez
rs-lgtm in components/arc
4 years, 8 months ago (2016-04-18 20:16:20 UTC) #8
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_arm64_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/52206) android_chromium_gn_compile_rel on ...
4 years, 8 months ago (2016-04-18 20:18:29 UTC) #10
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/20001
4 years, 8 months ago (2016-04-18 22:09:37 UTC) #12
tbarzic
Lgtm https://codereview.chromium.org/1898643002/diff/1/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h File components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h (right): https://codereview.chromium.org/1898643002/diff/1/components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h#newcode6 components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h:6: #define COMPONENTS_PROXIMITY_AUTH_BLE_BLUETOOTH_LOW_ENERGY_CHARACTERISTICS_FINDER_H_ nit: update #endif line
4 years, 8 months ago (2016-04-18 22:12:03 UTC) #13
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-19 00:23:48 UTC) #15
rkc
Vincent, this latest patch moves the main accessors back into the base classes. I believe ...
4 years, 8 months ago (2016-04-19 07:03:39 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/30001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/30001
4 years, 8 months ago (2016-04-19 07:04:34 UTC) #18
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-19 08:45:50 UTC) #20
scheib
https://codereview.chromium.org/1898643002/diff/1/device/bluetooth/bluetooth_gatt_characteristic.h File device/bluetooth/bluetooth_gatt_characteristic.h (right): https://codereview.chromium.org/1898643002/diff/1/device/bluetooth/bluetooth_gatt_characteristic.h#newcode26 device/bluetooth/bluetooth_gatt_characteristic.h:26: // used: Complete comment. https://codereview.chromium.org/1898643002/diff/40001/device/bluetooth/bluetooth_gatt_service.h File device/bluetooth/bluetooth_gatt_service.h (right): https://codereview.chromium.org/1898643002/diff/40001/device/bluetooth/bluetooth_gatt_service.h#newcode56 ...
4 years, 8 months ago (2016-04-20 01:23:30 UTC) #21
rkc
https://codereview.chromium.org/1898643002/diff/1/device/bluetooth/bluetooth_gatt_characteristic.h File device/bluetooth/bluetooth_gatt_characteristic.h (right): https://codereview.chromium.org/1898643002/diff/1/device/bluetooth/bluetooth_gatt_characteristic.h#newcode26 device/bluetooth/bluetooth_gatt_characteristic.h:26: // used: On 2016/04/20 01:23:30, scheib wrote: > Complete ...
4 years, 8 months ago (2016-04-20 16:31:55 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/1898643002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/50001
4 years, 8 months ago (2016-04-20 16:33:10 UTC) #24
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromeos_amd64-generic_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_amd64-generic_chromium_compile_only_ng/builds/124882) chromeos_daisy_chromium_compile_only_ng on ...
4 years, 8 months ago (2016-04-20 16:38:42 UTC) #26
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/50001
4 years, 8 months ago (2016-04-20 16:56:38 UTC) #28
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-20 18:03:30 UTC) #30
scheib
LGTM
4 years, 8 months ago (2016-04-20 19:36:27 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/50001
4 years, 8 months ago (2016-04-20 20:24:54 UTC) #34
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/170970)
4 years, 8 months ago (2016-04-20 20:34:24 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/50001
4 years, 8 months ago (2016-04-20 21:07:13 UTC) #38
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/170990)
4 years, 8 months ago (2016-04-20 21:16:25 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1898643002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1898643002/60001
4 years, 8 months ago (2016-04-20 21:29:38 UTC) #43
commit-bot: I haz the power
Committed patchset #7 (id:60001)
4 years, 8 months ago (2016-04-20 23:59:27 UTC) #45
commit-bot: I haz the power
4 years, 8 months ago (2016-04-22 19:27:46 UTC) #47
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/1222397542d62a15aa133930d7ef311223a6e5e0
Cr-Commit-Position: refs/heads/master@{#388604}

Powered by Google App Engine
This is Rietveld 408576698