12345678910111213141516171819202122232425262728293031 |
- These patches are in the same file as they touch the same files and
- need to be applied in order.
- https://chromium-review.googlesource.com/c/chromium/src/+/4401098
- https://chromium-review.googlesource.com/c/chromium/src/+/4401098
- https://chromium-review.googlesource.com/c/chromium/src/+/4394541
- https://chromium-review.googlesource.com/c/chromium/src/+/4400997
- https://chromium-review.googlesource.com/c/chromium/src/+/4330267
- From dae4f1f4114ff6c6811aa3a0410e88e7a53b0531 Mon Sep 17 00:00:00 2001
- From: Stephan Hartmann <stha09@googlemail.com>
- Date: Wed, 05 Apr 2023 17:46:42 +0000
- Subject: [PATCH] IWYU: add cstdint for uint8_t in web_bluetooth_device_id
- Bug: 957519
- Change-Id: I2dba0b0088f6975d7ce59c3a14427d2dc5838477
- Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4401098
- Reviewed-by: Jack Hsieh <chengweih@chromium.org>
- Commit-Queue: Stephan Hartmann <stha09@googlemail.com>
- Cr-Commit-Position: refs/heads/main@{#1126677}
- --- a/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h
- +++ b/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h
- @@ -5,6 +5,8 @@
- #ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_BLUETOOTH_WEB_BLUETOOTH_DEVICE_ID_H_
- #define THIRD_PARTY_BLINK_PUBLIC_COMMON_BLUETOOTH_WEB_BLUETOOTH_DEVICE_ID_H_
-
- +#include <stdint.h>
- +
- #include <array>
- #include <string>
-
|