archrelease: copy trunk to extra-x86_64
[arch-packages.git] / chromium / trunk / openscreen-iwyu-add-stdint.h.patch
blob5ab7bcb22f140ca3344680d3d10ea10887e29346
1 From f8d65c61edd2ba483f1f6167c8a5fe5ad53254ea Mon Sep 17 00:00:00 2001
2 From: Stephan Hartmann <stha09@googlemail.com>
3 Date: Wed, 5 Apr 2023 18:53:56 +0200
4 Subject: [PATCH] IWYU: add stdint.h for various integer types
6 Bug: chromium:957519
7 Change-Id: If28a50f5b1c68fffd1ba546dea18b4d906a42bbf
8 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/4403253
9 Reviewed-by: Mark Foltz <mfoltz@chromium.org>
10 Commit-Queue: Mark Foltz <mfoltz@chromium.org>
11 ---
12 AUTHORS | 1 +
13 discovery/dnssd/public/dns_sd_txt_record.h | 2 ++
14 util/base64.h | 2 ++
15 3 files changed, 5 insertions(+)
17 diff --git a/AUTHORS b/AUTHORS
18 index 768523fc..4e9e5667 100644
19 --- a/AUTHORS
20 +++ b/AUTHORS
21 @@ -5,3 +5,4 @@ Peter Thatcher <pthatcher@chromium.org>
22 Jordan Bayles <jophba@chromium.org>
23 Max Yakimakha <yakimakha@chromium.org>
24 Ryan Keane <rwkeane@google.com>
25 +Stephan Hartmann <stha09@googlemail.com>
26 diff --git a/discovery/dnssd/public/dns_sd_txt_record.h b/discovery/dnssd/public/dns_sd_txt_record.h
27 index edf2c782..c9b5c436 100644
28 --- a/discovery/dnssd/public/dns_sd_txt_record.h
29 +++ b/discovery/dnssd/public/dns_sd_txt_record.h
30 @@ -5,6 +5,8 @@
31 #ifndef DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
32 #define DISCOVERY_DNSSD_PUBLIC_DNS_SD_TXT_RECORD_H_
34 +#include <stdint.h>
36 #include <functional>
37 #include <map>
38 #include <set>
39 diff --git a/util/base64.h b/util/base64.h
40 index a7af9eca..86261936 100644
41 --- a/util/base64.h
42 +++ b/util/base64.h
43 @@ -5,6 +5,8 @@
44 #ifndef UTIL_BASE64_H_
45 #define UTIL_BASE64_H_
47 +#include <stdint.h>
49 #include <string>
50 #include <vector>