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

Issue 180163009: chrome.bluetooth API improvements. (Closed)

Created:
6 years, 9 months ago by rpaquay
Modified:
6 years, 8 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org, Tim Song
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

* Replace "read" method with onReceiveXxx events. * Few minor changes to idl file. * Socket implementation on Windows fully implemented and with (hopefully) correct threading usage. * ChromeOS and MacOS socket implementation empty for now (they will come in later CLs). BUG=336824, 340363, 340413, 343651, 344081 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=262175 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=262274

Patch Set 1 : Address various threading issues. #

Patch Set 2 : Implement all Socket related entry points (Windows only) #

Patch Set 3 : Obex File Push app working on top of this. More cleanup needed. #

Patch Set 4 : Remove dependency from content::BrowserThread. #

Patch Set 5 : Fix pre-submit warnings/errors. #

Patch Set 6 : Rebasing + fix merge conflicts. #

Patch Set 7 : Fix unit tests. #

Patch Set 8 : Rebasing, fix merge conflicts. #

Patch Set 9 : Fix MacOS build. #

Patch Set 10 : Fix chromeos build, new socket functions a NYI for now. #

Patch Set 11 : Fix threading ownership related to ApiResourceManager<BluetoothApiSocket> and BluetoothSocketEventD… #

Total comments: 16

Patch Set 12 : Address code review feedback. #

Total comments: 40

Patch Set 13 : Address code review feedback. #

Patch Set 14 : Address code review feedback, simplify threading model. #

Total comments: 23

Patch Set 15 : Rebasing + fix merge conflicts. #

Patch Set 16 : Address code review feedback. #

Total comments: 10

Patch Set 17 : Address code review feedback. #

Patch Set 18 : Rebasing + fix merge conflicts. #

Patch Set 19 : Rebase + Fix merge conflicts. #

Patch Set 20 : Try to fix mac build. #

Patch Set 21 : Fix another MacOS build. #

Patch Set 22 : Fix ChromeOS build. #

Patch Set 23 : Remove unused code. #

Total comments: 4

Patch Set 24 : Rebasing + Fix merge conflicts. #

Total comments: 6

Patch Set 25 : Rename "BluetoothSocket::Release" to "BluetoothSocket::Close". #

Patch Set 26 : Address code review feedback. #

Patch Set 27 : Address presubmit warning. #

Patch Set 28 : Rebasing. #

Patch Set 29 : Fix ChromeOS Full build. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2543 lines, -790 lines) Patch
M chrome/browser/extensions/api/bluetooth/bluetooth_api.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 8 chunks +194 lines, -61 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_api.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 11 chunks +452 lines, -167 lines 0 comments Download
A chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +125 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.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 24 1 chunk +95 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/bluetooth/bluetooth_api_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 23 1 chunk +207 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_apitest.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 5 chunks +22 lines, -9 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_event_router.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +0 lines, -29 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_event_router.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 20 chunks +26 lines, -78 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_event_router_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 23 5 chunks +7 lines, -117 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h View 1 2 3 4 5 6 2 chunks +3 lines, -5 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +10 lines, -3 lines 0 comments Download
M chrome/browser/extensions/api/bluetooth/bluetooth_private_api.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 2 chunks +5 lines, -7 lines 0 comments Download
A chrome/browser/extensions/api/bluetooth/bluetooth_socket_event_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +81 lines, -0 lines 0 comments Download
A chrome/browser/extensions/api/bluetooth/bluetooth_socket_event_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +179 lines, -0 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/api/bluetooth.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 9 chunks +134 lines, -51 lines 0 comments Download
M chrome/test/data/extensions/api_test/bluetooth/on_connection/runtest.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +2 lines, -2 lines 0 comments Download
M device/bluetooth/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +1 line, -0 lines 0 comments Download
M device/bluetooth/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +3 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_adapter.h View 1 2 3 4 5 7 chunks +25 lines, -25 lines 0 comments Download
M device/bluetooth/bluetooth_adapter_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +3 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_adapter_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +6 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_device.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +7 lines, -3 lines 0 comments Download
M device/bluetooth/bluetooth_device_chromeos.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +6 lines, -5 lines 0 comments Download
M device/bluetooth/bluetooth_device_chromeos.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 3 chunks +3 lines, -3 lines 0 comments Download
M device/bluetooth/bluetooth_device_mac.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +2 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_device_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +5 lines, -3 lines 0 comments Download
M device/bluetooth/bluetooth_device_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +12 lines, -2 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 21 22 23 3 chunks +22 lines, -20 lines 0 comments Download
M device/bluetooth/bluetooth_device_win_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 23 2 chunks +17 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_profile_chromeos_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 23 24 25 26 27 28 6 chunks +14 lines, -2 lines 0 comments Download
M device/bluetooth/bluetooth_profile_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +13 lines, -1 line 0 comments Download
M device/bluetooth/bluetooth_profile_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 2 chunks +83 lines, -11 lines 0 comments Download
M device/bluetooth/bluetooth_socket.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +42 lines, -17 lines 0 comments Download
A + device/bluetooth/bluetooth_socket.cc View 1 2 3 4 1 chunk +2 lines, -4 lines 0 comments Download
M device/bluetooth/bluetooth_socket_chromeos.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +12 lines, -10 lines 0 comments Download
M device/bluetooth/bluetooth_socket_chromeos.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 24 2 chunks +23 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_socket_mac.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +12 lines, -7 lines 0 comments Download
M device/bluetooth/bluetooth_socket_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +22 lines, -1 line 0 comments Download
A device/bluetooth/bluetooth_socket_thread_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +48 lines, -0 lines 0 comments Download
A device/bluetooth/bluetooth_socket_thread_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +66 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_socket_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +98 lines, -17 lines 0 comments Download
M device/bluetooth/bluetooth_socket_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 24 25 2 chunks +347 lines, -60 lines 0 comments Download
M device/bluetooth/bluetooth_task_manager_win.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +48 lines, -35 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_device.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +3 lines, -3 lines 0 comments Download
M device/bluetooth/test/mock_bluetooth_socket.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +12 lines, -10 lines 0 comments Download
M extensions/browser/api/api_resource_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +31 lines, -14 lines 0 comments Download
M extensions/browser/api/async_api_function.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M extensions/browser/extension_function_histogram_value.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 60 (0 generated)
rpaquay
keybuk@chromium.org: Please review changes in chrome/browser/extensions/api/bluetooth/ device/bluetooth/ miket@chromium.org: Please review changes in chrome/common/extensions/api/bluetooth.idl extensions/browser/api/
6 years, 9 months ago (2014-03-13 22:47:27 UTC) #1
keybuk
https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode41 chrome/common/extensions/api/bluetooth.idl:41: // Information about a bluetooth profile -- or service. ...
6 years, 9 months ago (2014-03-14 17:58:07 UTC) #2
rpaquay
https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode41 chrome/common/extensions/api/bluetooth.idl:41: // Information about a bluetooth profile -- or service. ...
6 years, 9 months ago (2014-03-14 18:27:49 UTC) #3
keybuk
https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode41 chrome/common/extensions/api/bluetooth.idl:41: // Information about a bluetooth profile -- or service. ...
6 years, 9 months ago (2014-03-14 19:47:06 UTC) #4
rpaquay
https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode41 chrome/common/extensions/api/bluetooth.idl:41: // Information about a bluetooth profile -- or service. ...
6 years, 9 months ago (2014-03-14 20:30:56 UTC) #5
keybuk
https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_device.h File device/bluetooth/bluetooth_device.h (right): https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_device.h#newcode365 device/bluetooth/bluetooth_device.h:365: const net::NetLog::Source& source, What's the justification for these added ...
6 years, 9 months ago (2014-03-14 21:13:48 UTC) #6
rpaquay
https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_device.h File device/bluetooth/bluetooth_device.h (right): https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_device.h#newcode365 device/bluetooth/bluetooth_device.h:365: const net::NetLog::Source& source, On 2014/03/14 21:13:48, keybuk wrote: > ...
6 years, 9 months ago (2014-03-14 21:48:09 UTC) #7
keybuk
On 2014/03/14 21:48:09, rpaquay wrote: > That is a good point, the task runners definitely ...
6 years, 9 months ago (2014-03-14 21:50:52 UTC) #8
rpaquay
On 2014/03/14 21:50:52, keybuk wrote: > On 2014/03/14 21:48:09, rpaquay wrote: > > That is ...
6 years, 9 months ago (2014-03-14 22:21:28 UTC) #9
xiyuan
https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_task_manager_win.cc File device/bluetooth/bluetooth_task_manager_win.cc (right): https://codereview.chromium.org/180163009/diff/220001/device/bluetooth/bluetooth_task_manager_win.cc#newcode465 device/bluetooth/bluetooth_task_manager_win.cc:465: device_address, L2CAP_PROTOCOL_UUID, service_record_states); It seems we only need enumerate ...
6 years, 9 months ago (2014-03-17 22:55:10 UTC) #10
rpaquay
PTAL: * Address code review feedback * Make a few changes needed for the MacOS ...
6 years, 9 months ago (2014-03-20 00:48:17 UTC) #11
keybuk
mostly a header/idl pass at this point, will do a deeper review of code code ...
6 years, 9 months ago (2014-03-20 01:21:55 UTC) #12
keybuk
https://codereview.chromium.org/180163009/diff/240001/device/bluetooth/bluetooth_socket.h File device/bluetooth/bluetooth_socket.h (right): https://codereview.chromium.org/180163009/diff/240001/device/bluetooth/bluetooth_socket.h#newcode42 device/bluetooth/bluetooth_socket.h:42: const ErrorCompletionCallback& error_callback) = 0; Does this need to ...
6 years, 9 months ago (2014-03-20 16:34:48 UTC) #13
rpaquay
Thanks for the comments so far! I think I addressed current feedback in Patchset #13. ...
6 years, 9 months ago (2014-03-20 18:21:11 UTC) #14
keybuk
https://codereview.chromium.org/180163009/diff/240001/chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h File chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h (right): https://codereview.chromium.org/180163009/diff/240001/chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h#newcode110 chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h:110: int buffer_size_; On 2014/03/20 18:21:11, rpaquay wrote: > On ...
6 years, 9 months ago (2014-03-20 18:38:39 UTC) #15
rpaquay
PTAL: all current comments should be addressed with this patchset. * As explained in a ...
6 years, 9 months ago (2014-03-25 20:06:09 UTC) #16
keybuk
Mostly there, just spotted a few issues https://codereview.chromium.org/180163009/diff/280001/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc File chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc (right): https://codereview.chromium.org/180163009/diff/280001/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc#newcode408 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc:408: const std::string& ...
6 years, 9 months ago (2014-03-27 20:20:06 UTC) #17
rpaquay
PTAL. * Patchset #15 is a "simple" rebase + fix merge conflicts. * Patchset #16 ...
6 years, 9 months ago (2014-03-27 22:00:01 UTC) #18
keybuk
lgtm
6 years, 9 months ago (2014-03-27 22:09:16 UTC) #19
rpaquay
miket@chromium.org: I need OWNER lgtm for a few more files, please review changes in chrome/common/extensions/api/bluetooth.idl ...
6 years, 9 months ago (2014-03-27 22:21:14 UTC) #20
miket_OOO
lgtm https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode8 chrome/common/extensions/api/bluetooth.idl:8: // Information about the state of the bluetooth ...
6 years, 9 months ago (2014-03-28 20:48:42 UTC) #21
rpaquay
https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl File chrome/common/extensions/api/bluetooth.idl (right): https://codereview.chromium.org/180163009/diff/220001/chrome/common/extensions/api/bluetooth.idl#newcode8 chrome/common/extensions/api/bluetooth.idl:8: // Information about the state of the bluetooth adapater. ...
6 years, 8 months ago (2014-03-31 15:39:18 UTC) #22
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-03-31 15:39:31 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/800001
6 years, 8 months ago (2014-03-31 15:39:42 UTC) #24
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-03-31 15:39:54 UTC) #25
commit-bot: I haz the power
Failed to apply patch for chrome/browser/extensions/api/bluetooth/bluetooth_api.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 8 months ago (2014-03-31 15:39:55 UTC) #26
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-03-31 17:54:06 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/820001
6 years, 8 months ago (2014-03-31 17:56:04 UTC) #28
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-03-31 18:31:45 UTC) #29
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=58593
6 years, 8 months ago (2014-03-31 18:31:46 UTC) #30
rpaquay
jar@chromium.org, please check the following file: device/bluetooth/DEPS It looks like I need LGTM for adding ...
6 years, 8 months ago (2014-03-31 21:17:55 UTC) #31
xiyuan
https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h File device/bluetooth/bluetooth_socket.h (right): https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h#newcode42 device/bluetooth/bluetooth_socket.h:42: virtual void Release() = 0; Release() confuses scoped_refptr. We ...
6 years, 8 months ago (2014-04-03 23:25:46 UTC) #32
rpaquay
https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h File device/bluetooth/bluetooth_socket.h (right): https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h#newcode42 device/bluetooth/bluetooth_socket.h:42: virtual void Release() = 0; On 2014/04/03 23:25:47, xiyuan ...
6 years, 8 months ago (2014-04-04 19:52:12 UTC) #33
xiyuan
https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h File device/bluetooth/bluetooth_socket.h (right): https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h#newcode42 device/bluetooth/bluetooth_socket.h:42: virtual void Release() = 0; On 2014/04/04 19:52:13, rpaquay ...
6 years, 8 months ago (2014-04-04 20:05:05 UTC) #34
jar (doing other things)
https://codereview.chromium.org/180163009/diff/940001/device/bluetooth/DEPS File device/bluetooth/DEPS (right): https://codereview.chromium.org/180163009/diff/940001/device/bluetooth/DEPS#newcode5 device/bluetooth/DEPS:5: "+net", Better would be to have: +net/base +net/socket https://codereview.chromium.org/180163009/diff/940001/device/bluetooth/bluetooth_socket_win.cc ...
6 years, 8 months ago (2014-04-04 21:35:48 UTC) #35
rpaquay
https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h File device/bluetooth/bluetooth_socket.h (right): https://codereview.chromium.org/180163009/diff/920001/device/bluetooth/bluetooth_socket.h#newcode42 device/bluetooth/bluetooth_socket.h:42: virtual void Release() = 0; On 2014/04/04 20:05:06, xiyuan ...
6 years, 8 months ago (2014-04-04 21:59:25 UTC) #36
rpaquay
https://codereview.chromium.org/180163009/diff/940001/device/bluetooth/DEPS File device/bluetooth/DEPS (right): https://codereview.chromium.org/180163009/diff/940001/device/bluetooth/DEPS#newcode5 device/bluetooth/DEPS:5: "+net", On 2014/04/04 21:35:49, jar wrote: > Better would ...
6 years, 8 months ago (2014-04-04 22:27:56 UTC) #37
jar (doing other things)
Patch set 26 DEPS for net (and use of net/socket) LGTM
6 years, 8 months ago (2014-04-04 22:30:28 UTC) #38
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-04 22:33:15 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/940002
6 years, 8 months ago (2014-04-04 22:34:00 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-04 23:11:49 UTC) #41
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on win_chromium_compile_dbg
6 years, 8 months ago (2014-04-04 23:11:50 UTC) #42
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-07 15:48:42 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/940003
6 years, 8 months ago (2014-04-07 15:48:51 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 15:49:19 UTC) #45
commit-bot: I haz the power
Failed to request the patch to try. Please note that binary files are still unsupported ...
6 years, 8 months ago (2014-04-07 15:49:20 UTC) #46
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-07 15:54:57 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/940003
6 years, 8 months ago (2014-04-07 15:55:00 UTC) #48
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 15:55:31 UTC) #49
commit-bot: I haz the power
Failed to apply patch for extensions/browser/extension_function_histogram_value.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 8 months ago (2014-04-07 15:55:31 UTC) #50
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-07 16:19:04 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/1010001
6 years, 8 months ago (2014-04-07 16:19:11 UTC) #52
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-07 16:49:23 UTC) #53
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_rel tryserver.chromium on linux_chromium_clang_dbg
6 years, 8 months ago (2014-04-07 16:49:24 UTC) #54
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-07 17:42:55 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/1010001
6 years, 8 months ago (2014-04-07 17:43:55 UTC) #56
commit-bot: I haz the power
Change committed as 262175
6 years, 8 months ago (2014-04-07 19:21:11 UTC) #57
rpaquay
The CQ bit was checked by rpaquay@chromium.org
6 years, 8 months ago (2014-04-07 21:47:56 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rpaquay@chromium.org/180163009/1030001
6 years, 8 months ago (2014-04-07 21:48:09 UTC) #59
commit-bot: I haz the power
6 years, 8 months ago (2014-04-08 01:02:32 UTC) #60
Message was sent while issue was closed.
Change committed as 262274

Powered by Google App Engine
This is Rietveld 408576698