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

Issue 2015463004: bluetooth: Use BluetoothUUID instead of string when sending uuids (Closed)

Created:
4 years, 7 months ago by ortuno
Modified:
4 years, 6 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blink-reviews, blink-reviews-api_chromium.org, chromium-reviews, darin (slow to review), darin-cc_chromium.org, dglazkov+blink, jam, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, ortuno+watch_chromium.org, qsr+mojo_chromium.org, scheib+watch_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@bluetooth-mojo-request-device
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

bluetooth: Use BluetoothUUID instead of string when sending uuids This patch introduces a Typemap from mojo::String to unique_ptr<device::BluetoothUUID>. Mapping to base::Optional allows us to have a nullable type. BUG=606446 Committed: https://crrev.com/e491483f14621c2bf2587c2ccbf3905b57d5acac Cr-Commit-Position: refs/heads/master@{#399259}

Patch Set 1 #

Patch Set 2 : device::BluetoothUUID #

Patch Set 3 : Done! #

Patch Set 4 : gyp (╯°□°)╯︵ ┻━┻ #

Patch Set 5 : Remove includes #

Patch Set 6 : (╯°□°)╯︵ ┻━┻ #

Patch Set 7 : Fix tests #

Patch Set 8 : Add header #

Total comments: 14

Patch Set 9 : Address comments #

Patch Set 10 : Lint #

Total comments: 24

Patch Set 11 : Address jyasskin's comments #

Patch Set 12 : Clean up #

Total comments: 3

Patch Set 13 : Address moar comments #

Patch Set 14 : Fix windows #

Total comments: 2

Patch Set 15 : Use std::string instead of StringPiece #

Patch Set 16 : Include string #

Total comments: 14

Patch Set 17 : Address jbroman's comments #

Patch Set 18 : Only bulid mojo targets on non-iOS #

Patch Set 19 : Fix merge conflict #

Unified diffs Side-by-side diffs Delta from patch set Stats (+323 lines, -183 lines) Patch
M content/browser/bluetooth/bluetooth_allowed_devices_map.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +11 lines, -5 lines 0 comments Download
M content/browser/bluetooth/bluetooth_allowed_devices_map.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +9 lines, -7 lines 0 comments Download
M content/browser/bluetooth/bluetooth_allowed_devices_map_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +10 lines, -5 lines 0 comments Download
M content/browser/bluetooth/bluetooth_blacklist.cc View 1 2 3 4 5 6 7 8 9 10 4 chunks +8 lines, -6 lines 0 comments Download
M content/browser/bluetooth/bluetooth_blacklist_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 8 chunks +14 lines, -10 lines 0 comments Download
M content/browser/bluetooth/bluetooth_device_chooser_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 6 chunks +13 lines, -31 lines 0 comments Download
M content/browser/bluetooth/bluetooth_metrics.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -2 lines 0 comments Download
M content/browser/bluetooth/bluetooth_metrics.cc View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +25 lines, -13 lines 0 comments Download
M content/browser/bluetooth/web_bluetooth_service_impl.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +4 lines, -3 lines 0 comments Download
M content/browser/bluetooth/web_bluetooth_service_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 10 chunks +33 lines, -30 lines 0 comments Download
M content/renderer/bluetooth/bluetooth_type_converters.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +9 lines, -0 lines 0 comments Download
M content/renderer/bluetooth/bluetooth_type_converters.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +18 lines, -2 lines 0 comments Download
M content/renderer/bluetooth/web_bluetooth_impl.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +7 lines, -3 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 1 chunk +41 lines, -0 lines 0 comments Download
M device/bluetooth/bluetooth_uuid.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +5 lines, -24 lines 0 comments Download
M device/bluetooth/bluetooth_uuid.cc View 1 2 3 4 2 chunks +0 lines, -31 lines 0 comments Download
A + device/bluetooth/public/interfaces/BUILD.gn View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
A + device/bluetooth/public/interfaces/DEPS View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
A device/bluetooth/public/interfaces/OWNERS View 1 2 3 4 5 6 7 8 1 chunk +27 lines, -0 lines 0 comments Download
A + device/bluetooth/public/interfaces/bluetooth_uuid.mojom View 1 2 3 4 5 6 7 8 9 10 1 chunk +4 lines, -3 lines 0 comments Download
A device/bluetooth/public/interfaces/bluetooth_uuid.typemap View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +15 lines, -0 lines 0 comments Download
A device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +51 lines, -0 lines 0 comments Download
A + device/bluetooth/public/interfaces/typemaps.gni View 1 2 3 4 5 6 7 8 9 10 17 18 1 chunk +1 line, -1 line 0 comments Download
M mojo/public/tools/bindings/chromium_bindings_configuration.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/blink.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom View 1 2 3 4 5 6 7 8 4 chunks +6 lines, -4 lines 0 comments Download

Messages

Total messages: 95 (36 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/2015463004/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/60001
4 years, 7 months ago (2016-05-25 23:18:42 UTC) #3
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_clang_dbg_recipe/builds/72184) cast_shell_linux on ...
4 years, 7 months ago (2016-05-25 23:25:37 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/2015463004/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/80001
4 years, 7 months ago (2016-05-25 23:33:55 UTC) #7
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/209588)
4 years, 7 months ago (2016-05-25 23:50:50 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/100001
4 years, 7 months ago (2016-05-26 00:03:50 UTC) #11
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/72133)
4 years, 7 months ago (2016-05-26 00:19:02 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/2015463004/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/120001
4 years, 7 months ago (2016-05-26 15:49:27 UTC) #15
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win8_chromium_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win8_chromium_ng/builds/154530)
4 years, 7 months ago (2016-05-26 16:32:57 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/140001
4 years, 7 months ago (2016-05-26 19:57:27 UTC) #19
ortuno
rockot: PTAL. No need to do a thorough review of content/ code as I'll add ...
4 years, 7 months ago (2016-05-26 20:46:13 UTC) #21
Ken Rockot(use gerrit already)
https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/BUILD.gn File device/bluetooth/mojo/BUILD.gn (right): https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/BUILD.gn#newcode5 device/bluetooth/mojo/BUILD.gn:5: import("//mojo/public/tools/bindings/mojom.gni") Please put this stuff in device/bluetooth/public/interfaces - I ...
4 years, 7 months ago (2016-05-26 21:05:07 UTC) #22
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/229007)
4 years, 7 months ago (2016-05-26 22:42:42 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/180001
4 years, 7 months ago (2016-05-27 03:47:25 UTC) #26
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-05-27 05:34:55 UTC) #28
ortuno
https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/BUILD.gn File device/bluetooth/mojo/BUILD.gn (right): https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/BUILD.gn#newcode5 device/bluetooth/mojo/BUILD.gn:5: import("//mojo/public/tools/bindings/mojom.gni") On 2016/05/26 at 21:05:07, Ken Rockot wrote: > ...
4 years, 6 months ago (2016-05-27 14:38:36 UTC) #29
Ken Rockot(use gerrit already)
lgtm https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/bluetooth_uuid.typemap File device/bluetooth/mojo/bluetooth_uuid.typemap (right): https://codereview.chromium.org/2015463004/diff/140001/device/bluetooth/mojo/bluetooth_uuid.typemap#newcode11 device/bluetooth/mojo/bluetooth_uuid.typemap:11: type_mappings = [ "device.mojom.BluetoothUUID=std::unique_ptr<device::BluetoothUUID>" ] On 2016/05/27 at ...
4 years, 6 months ago (2016-05-27 14:57:42 UTC) #30
ortuno
jyasskin: PTAL
4 years, 6 months ago (2016-05-27 16:01:39 UTC) #32
Jeffrey Yasskin
https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_allowed_devices_map.cc File content/browser/bluetooth/bluetooth_allowed_devices_map.cc (right): https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_allowed_devices_map.cc#newcode164 content/browser/bluetooth/bluetooth_allowed_devices_map.cc:164: for (const std::unique_ptr<BluetoothUUID>& uuid : filter->services) { I'm definitely ...
4 years, 6 months ago (2016-05-28 04:38:06 UTC) #33
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/220001
4 years, 6 months ago (2016-05-31 17:06:48 UTC) #35
ortuno
https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_allowed_devices_map.cc File content/browser/bluetooth/bluetooth_allowed_devices_map.cc (right): https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_allowed_devices_map.cc#newcode164 content/browser/bluetooth/bluetooth_allowed_devices_map.cc:164: for (const std::unique_ptr<BluetoothUUID>& uuid : filter->services) { On 2016/05/28 ...
4 years, 6 months ago (2016-05-31 17:30:47 UTC) #36
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_x64_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/221947)
4 years, 6 months ago (2016-05-31 17:47:52 UTC) #38
Jeffrey Yasskin
LGTM https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_blacklist_unittest.cc File content/browser/bluetooth/bluetooth_blacklist_unittest.cc (right): https://codereview.chromium.org/2015463004/diff/180001/content/browser/bluetooth/bluetooth_blacklist_unittest.cc#newcode20 content/browser/bluetooth/bluetooth_blacklist_unittest.cc:20: bool OptionalServicesEqual( On 2016/05/31 17:30:47, ortuno wrote: > ...
4 years, 6 months ago (2016-05-31 21:52:58 UTC) #39
ortuno
I'll try to land this now to avoid new functions using strings rather than uuids. ...
4 years, 6 months ago (2016-06-01 15:37:58 UTC) #40
ortuno
tsepez: PTAL at third_party/WebKit/public/platform/modules/web_bluetooth.mojom and device/bluetooth/public/interfaces/
4 years, 6 months ago (2016-06-01 15:43:40 UTC) #42
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/260001
4 years, 6 months ago (2016-06-01 15:48:41 UTC) #44
yzshen1
(No need to block on this comment, just a FYI) https://codereview.chromium.org/2015463004/diff/260001/device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h File device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h (right): https://codereview.chromium.org/2015463004/diff/260001/device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h#newcode26 ...
4 years, 6 months ago (2016-06-01 16:13:00 UTC) #46
Tom Sepez
mojom LGTM
4 years, 6 months ago (2016-06-01 17:52:52 UTC) #47
ortuno
Thanks! https://codereview.chromium.org/2015463004/diff/260001/device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h File device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h (right): https://codereview.chromium.org/2015463004/diff/260001/device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h#newcode26 device/bluetooth/public/interfaces/bluetooth_uuid_struct_traits.h:26: static base::StringPiece uuid( On 2016/06/01 at 16:12:59, yzshen1 ...
4 years, 6 months ago (2016-06-01 18:28:12 UTC) #48
ortuno
esprehn: PTAL at third_party/WebKit/public/blink.gyp and third_party/WebKit/public/BUILD.gn
4 years, 6 months ago (2016-06-01 18:29:06 UTC) #50
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2015463004/280001
4 years, 6 months ago (2016-06-01 18:29:29 UTC) #52
ortuno
japhet: esprehn is OOO. PTAL at third_party/WebKit/public/blink.gyp and third_party/WebKit/public/BUILD.gn
4 years, 6 months ago (2016-06-02 17:14:40 UTC) #54
ortuno
esprehn or japhet: ping?
4 years, 6 months ago (2016-06-08 00:18:10 UTC) #55
Tom Sepez
lgtm
4 years, 6 months ago (2016-06-08 16:49:44 UTC) #56
esprehn
jbroman@ can you take this one?
4 years, 6 months ago (2016-06-08 20:34:45 UTC) #58
jbroman
Sure, I can take a look. The blink changes seem reasonable to me, though I ...
4 years, 6 months ago (2016-06-08 21:08:08 UTC) #59
ortuno
Thanks! https://codereview.chromium.org/2015463004/diff/300001/content/browser/bluetooth/bluetooth_blacklist_unittest.cc File content/browser/bluetooth/bluetooth_blacklist_unittest.cc (right): https://codereview.chromium.org/2015463004/diff/300001/content/browser/bluetooth/bluetooth_blacklist_unittest.cc#newcode379 content/browser/bluetooth/bluetooth_blacklist_unittest.cc:379: mojo::Array<base::Optional<BluetoothUUID>>(); On 2016/06/08 at 21:08:07, jbroman wrote: > ...
4 years, 6 months ago (2016-06-09 16:15:59 UTC) #60
dcheng
https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc File content/renderer/bluetooth/bluetooth_type_converters.cc (right): https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc#newcode49 content/renderer/bluetooth/bluetooth_type_converters.cc:49: base::Optional<device::BluetoothUUID> We should avoid adding new type converters. Can ...
4 years, 6 months ago (2016-06-09 16:20:40 UTC) #62
ortuno
https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc File content/renderer/bluetooth/bluetooth_type_converters.cc (right): https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc#newcode49 content/renderer/bluetooth/bluetooth_type_converters.cc:49: base::Optional<device::BluetoothUUID> On 2016/06/09 at 16:20:40, dcheng wrote: > We ...
4 years, 6 months ago (2016-06-09 16:29:23 UTC) #63
dcheng
https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc File content/renderer/bluetooth/bluetooth_type_converters.cc (right): https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc#newcode49 content/renderer/bluetooth/bluetooth_type_converters.cc:49: base::Optional<device::BluetoothUUID> On 2016/06/09 16:29:23, ortuno wrote: > On 2016/06/09 ...
4 years, 6 months ago (2016-06-09 18:08:48 UTC) #64
ortuno
https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc File content/renderer/bluetooth/bluetooth_type_converters.cc (right): https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc#newcode49 content/renderer/bluetooth/bluetooth_type_converters.cc:49: base::Optional<device::BluetoothUUID> On 2016/06/09 at 18:08:48, dcheng wrote: > On ...
4 years, 6 months ago (2016-06-09 19:54:50 UTC) #65
dcheng
On 2016/06/09 19:54:50, ortuno wrote: > https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc > File content/renderer/bluetooth/bluetooth_type_converters.cc (right): > > https://codereview.chromium.org/2015463004/diff/300001/content/renderer/bluetooth/bluetooth_type_converters.cc#newcode49 > ...
4 years, 6 months ago (2016-06-09 21:07:49 UTC) #67
ortuno
jbroman: ping?
4 years, 6 months ago (2016-06-10 14:41:05 UTC) #68
jbroman
lgtm
4 years, 6 months ago (2016-06-10 14:47:48 UTC) #69
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/320001
4 years, 6 months ago (2016-06-10 14:49:41 UTC) #71
ortuno
jbroman: Thanks! esprehn: I still need owners review for third_party/WebKit/public/
4 years, 6 months ago (2016-06-10 14:50:59 UTC) #72
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios-device on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/19412)
4 years, 6 months ago (2016-06-10 14:57:37 UTC) #74
esprehn
lgtm
4 years, 6 months ago (2016-06-10 15:19:56 UTC) #75
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/340001
4 years, 6 months ago (2016-06-10 15:24:23 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/340001
4 years, 6 months ago (2016-06-10 18:09:34 UTC) #81
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/237235)
4 years, 6 months ago (2016-06-10 18:16:55 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2015463004/360001
4 years, 6 months ago (2016-06-10 18:20:26 UTC) #86
commit-bot: I haz the power
Committed patchset #19 (id:360001)
4 years, 6 months ago (2016-06-10 20:15:21 UTC) #87
commit-bot: I haz the power
CQ bit was unchecked
4 years, 6 months ago (2016-06-10 20:15:31 UTC) #88
commit-bot: I haz the power
Patchset 19 (id:??) landed as https://crrev.com/e491483f14621c2bf2587c2ccbf3905b57d5acac Cr-Commit-Position: refs/heads/master@{#399259}
4 years, 6 months ago (2016-06-10 20:16:29 UTC) #90
krasin
FYI: this CL has broken 'CFI Linux' buildbot: https://build.chromium.org/p/chromium.fyi/builders/CFI%20Linux/builds/5690 To reproduce it locally (requires a ...
4 years, 6 months ago (2016-06-11 23:11:00 UTC) #91
Jeffrey Yasskin
Ivan, please have the bot include line numbers in its stack traces. Without those, it ...
4 years, 6 months ago (2016-06-12 00:06:18 UTC) #92
Jeffrey Yasskin
Ivan, please have the bot include line numbers in its stack traces. Without those, it ...
4 years, 6 months ago (2016-06-12 00:06:18 UTC) #93
krasin
I agree. Filed https://crbug.com/619350 for ensuring we have line numbers on those bots. I will ...
4 years, 6 months ago (2016-06-12 00:16:12 UTC) #94
krasin
4 years, 6 months ago (2016-06-12 00:22:21 UTC) #95
Message was sent while issue was closed.
Filed the bug to track the current issue with CFI + Bluetooth:
https://crbug.com/619351

Powered by Google App Engine
This is Rietveld 408576698