summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Negyokru <negyokru@inf.u-szeged.hu>2023-03-03 16:56:50 +0100
committerMartin Negyokru <negyokru@inf.u-szeged.hu>2023-03-23 14:50:18 +0000
commit78d4b0d916a6216e394045a3ba11284fe1ced6b0 (patch)
treef9ee350c4824a31675f7d026a68f45c5020746b9
parent447f5cb72905af87851b4c10c5e728f58cea46b5 (diff)
downloadqtwebengine-chromium-78d4b0d916a6216e394045a3ba11284fe1ced6b0.tar.gz
Fixes for building with GCC-13
Fixes: QTBUG-111697 Change-Id: I51fca3b3eb627b2617ff5c6c051fa1182671244d Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/464490 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io> (cherry picked from commit 9de0d8a90d9b0176542db8b54d678a9fcbb69337) Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/468197
-rw-r--r--chromium/base/debug/profiler.h1
-rw-r--r--chromium/base/debug/stack_trace.h1
-rw-r--r--chromium/cc/trees/target_property.cc2
-rw-r--r--chromium/components/metrics/psi_memory_parser.h2
-rw-r--r--chromium/components/viz/common/shared_element_resource_id.h1
-rw-r--r--chromium/content/public/browser/browsing_data_remover_delegate.h1
-rw-r--r--chromium/device/base/synchronization/one_writer_seqlock.h1
-rw-r--r--chromium/device/bluetooth/public/cpp/bluetooth_uuid.h1
-rw-r--r--chromium/extensions/common/constants.h2
-rw-r--r--chromium/extensions/renderer/bindings/api_invocation_errors.h1
-rw-r--r--chromium/gpu/config/gpu_feature_info.h1
-rw-r--r--chromium/net/base/parse_number.h2
-rw-r--r--chromium/net/cookies/cookie_inclusion_status.h1
-rw-r--r--chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h1
-rw-r--r--chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h1
-rw-r--r--chromium/pdf/document_attachment_info.h1
-rw-r--r--chromium/sandbox/linux/syscall_broker/broker_file_permission.h1
-rw-r--r--chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h1
-rw-r--r--chromium/third_party/angle/include/GLSLANG/ShaderVars.h1
-rw-r--r--chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h1
-rw-r--r--chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h1
-rw-r--r--chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h2
-rw-r--r--chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h1
-rw-r--r--chromium/third_party/dawn/src/dawn/native/CacheKey.h1
-rw-r--r--chromium/third_party/dawn/src/tint/reader/spirv/entry_point_info.h1
-rw-r--r--chromium/third_party/dawn/src/tint/reader/spirv/namer.h1
-rw-r--r--chromium/third_party/dawn/src/tint/reader/wgsl/token.h1
-rw-r--r--chromium/third_party/dawn/src/tint/writer/spirv/operand.h1
-rw-r--r--chromium/third_party/libgav1/src/src/utils/threadpool.cc1
-rw-r--r--chromium/third_party/pdfium/constants/annotation_flags.h2
-rw-r--r--chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h1
-rw-r--r--chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h2
-rw-r--r--chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h4
-rw-r--r--chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h1
-rw-r--r--chromium/ui/base/prediction/kalman_filter.h2
-rw-r--r--chromium/ui/events/types/scroll_types.h2
-rw-r--r--chromium/ui/gfx/geometry/linear_gradient.h1
-rw-r--r--chromium/v8/src/base/logging.h1
-rw-r--r--chromium/v8/src/inspector/v8-string-conversions.h1
39 files changed, 50 insertions, 1 deletions
diff --git a/chromium/base/debug/profiler.h b/chromium/base/debug/profiler.h
index 1229e06234c..be6e272e021 100644
--- a/chromium/base/debug/profiler.h
+++ b/chromium/base/debug/profiler.h
@@ -6,6 +6,7 @@
#define BASE_DEBUG_PROFILER_H_
#include <stddef.h>
+#include <cstdint>
#include <string>
diff --git a/chromium/base/debug/stack_trace.h b/chromium/base/debug/stack_trace.h
index 60c3c5c474d..6c8021cfdee 100644
--- a/chromium/base/debug/stack_trace.h
+++ b/chromium/base/debug/stack_trace.h
@@ -7,6 +7,7 @@
#include <stddef.h>
+#include <cstdint>
#include <iosfwd>
#include <string>
diff --git a/chromium/cc/trees/target_property.cc b/chromium/cc/trees/target_property.cc
index 96f8c3bd7cd..eba2b2091ac 100644
--- a/chromium/cc/trees/target_property.cc
+++ b/chromium/cc/trees/target_property.cc
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <cstdint>
+
#include "cc/trees/target_property.h"
#include "ui/gfx/animation/keyframe/target_property.h"
diff --git a/chromium/components/metrics/psi_memory_parser.h b/chromium/components/metrics/psi_memory_parser.h
index c1384dd2ed1..da6b5fdb705 100644
--- a/chromium/components/metrics/psi_memory_parser.h
+++ b/chromium/components/metrics/psi_memory_parser.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_METRICS_PSI_MEMORY_PARSER_H_
#define COMPONENTS_METRICS_PSI_MEMORY_PARSER_H_
+#include <cstdint>
+
#include <string>
#include "base/gtest_prod_util.h"
diff --git a/chromium/components/viz/common/shared_element_resource_id.h b/chromium/components/viz/common/shared_element_resource_id.h
index 2aba73ebcb4..2e028fddcf6 100644
--- a/chromium/components/viz/common/shared_element_resource_id.h
+++ b/chromium/components/viz/common/shared_element_resource_id.h
@@ -5,6 +5,7 @@
#ifndef COMPONENTS_VIZ_COMMON_SHARED_ELEMENT_RESOURCE_ID_H_
#define COMPONENTS_VIZ_COMMON_SHARED_ELEMENT_RESOURCE_ID_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/content/public/browser/browsing_data_remover_delegate.h b/chromium/content/public/browser/browsing_data_remover_delegate.h
index 3069c858d37..f4614b73c6c 100644
--- a/chromium/content/public/browser/browsing_data_remover_delegate.h
+++ b/chromium/content/public/browser/browsing_data_remover_delegate.h
@@ -5,6 +5,7 @@
#ifndef CONTENT_PUBLIC_BROWSER_BROWSING_DATA_REMOVER_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_BROWSING_DATA_REMOVER_DELEGATE_H_
+#include <cstdint>
#include <string>
#include <vector>
#include "base/callback_forward.h"
diff --git a/chromium/device/base/synchronization/one_writer_seqlock.h b/chromium/device/base/synchronization/one_writer_seqlock.h
index 6a3eeda5658..525301379c1 100644
--- a/chromium/device/base/synchronization/one_writer_seqlock.h
+++ b/chromium/device/base/synchronization/one_writer_seqlock.h
@@ -6,6 +6,7 @@
#define DEVICE_BASE_SYNCHRONIZATION_ONE_WRITER_SEQLOCK_H_
#include <atomic>
+#include <cstdint>
#include "base/atomicops.h"
#include "base/check.h"
diff --git a/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h b/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h
index 3cf2914e108..4b0552440cf 100644
--- a/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h
+++ b/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h
@@ -5,6 +5,7 @@
#ifndef DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_UUID_H_
#define DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_UUID_H_
+#include <cstdint>
#include <ostream>
#include <string>
#include <vector>
diff --git a/chromium/extensions/common/constants.h b/chromium/extensions/common/constants.h
index 9ac68e2be9f..fef102c78c5 100644
--- a/chromium/extensions/common/constants.h
+++ b/chromium/extensions/common/constants.h
@@ -5,6 +5,8 @@
#ifndef EXTENSIONS_COMMON_CONSTANTS_H_
#define EXTENSIONS_COMMON_CONSTANTS_H_
+#include <cstdint>
+
#include "base/files/file_path.h"
#include "base/strings/string_piece_forward.h"
#include "build/chromeos_buildflags.h"
diff --git a/chromium/extensions/renderer/bindings/api_invocation_errors.h b/chromium/extensions/renderer/bindings/api_invocation_errors.h
index 4ba8de84601..6352b901968 100644
--- a/chromium/extensions/renderer/bindings/api_invocation_errors.h
+++ b/chromium/extensions/renderer/bindings/api_invocation_errors.h
@@ -5,6 +5,7 @@
#ifndef EXTENSIONS_RENDERER_BINDINGS_API_INVOCATION_ERRORS_H_
#define EXTENSIONS_RENDERER_BINDINGS_API_INVOCATION_ERRORS_H_
+#include <cstdint>
#include <set>
#include <string>
diff --git a/chromium/gpu/config/gpu_feature_info.h b/chromium/gpu/config/gpu_feature_info.h
index 027f1a5af3e..70759b2ae47 100644
--- a/chromium/gpu/config/gpu_feature_info.h
+++ b/chromium/gpu/config/gpu_feature_info.h
@@ -5,6 +5,7 @@
#ifndef GPU_CONFIG_GPU_FEATURE_INFO_H_
#define GPU_CONFIG_GPU_FEATURE_INFO_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/net/base/parse_number.h b/chromium/net/base/parse_number.h
index 4e49ab71121..8655ff18d1a 100644
--- a/chromium/net/base/parse_number.h
+++ b/chromium/net/base/parse_number.h
@@ -5,6 +5,8 @@
#ifndef NET_BASE_PARSE_NUMBER_H_
#define NET_BASE_PARSE_NUMBER_H_
+#include <cstdint>
+
#include "base/strings/string_piece.h"
#include "net/base/net_export.h"
diff --git a/chromium/net/cookies/cookie_inclusion_status.h b/chromium/net/cookies/cookie_inclusion_status.h
index 2e9c319a3d2..4d723d18f29 100644
--- a/chromium/net/cookies/cookie_inclusion_status.h
+++ b/chromium/net/cookies/cookie_inclusion_status.h
@@ -6,6 +6,7 @@
#define NET_COOKIES_COOKIE_INCLUSION_STATUS_H_
#include <bitset>
+#include <cstdint>
#include <ostream>
#include <string>
#include <vector>
diff --git a/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h b/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h
index 6a300ed0c0b..3e30f1cb02f 100644
--- a/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h
+++ b/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h
@@ -5,6 +5,7 @@
#ifndef QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_
#define QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_
+#include <cstdint>
#include <vector>
#include "absl/strings/string_view.h"
diff --git a/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h b/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h
index 52f15017283..db4d3108497 100644
--- a/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h
+++ b/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h
@@ -5,6 +5,7 @@
#ifndef QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_
#define QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/pdf/document_attachment_info.h b/chromium/pdf/document_attachment_info.h
index 138ca2efec4..08f06e7b8c9 100644
--- a/chromium/pdf/document_attachment_info.h
+++ b/chromium/pdf/document_attachment_info.h
@@ -5,6 +5,7 @@
#ifndef PDF_DOCUMENT_ATTACHMENT_INFO_H_
#define PDF_DOCUMENT_ATTACHMENT_INFO_H_
+#include <cstdint>
#include <string>
diff --git a/chromium/sandbox/linux/syscall_broker/broker_file_permission.h b/chromium/sandbox/linux/syscall_broker/broker_file_permission.h
index 0aad3ac782d..3571b8a0f7e 100644
--- a/chromium/sandbox/linux/syscall_broker/broker_file_permission.h
+++ b/chromium/sandbox/linux/syscall_broker/broker_file_permission.h
@@ -6,6 +6,7 @@
#define SANDBOX_LINUX_SYSCALL_BROKER_BROKER_FILE_PERMISSION_H_
#include <bitset>
+#include <cstdint>
#include <string>
#include "sandbox/sandbox_export.h"
diff --git a/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h b/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
index c47536d63e2..55e8ac882dd 100644
--- a/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
+++ b/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
@@ -19,6 +19,7 @@
#include <limits.h>
#include <cstddef>
+#include <cstdint>
#include <cstring>
#include <ostream>
diff --git a/chromium/third_party/angle/include/GLSLANG/ShaderVars.h b/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
index 18175e15c76..9edfd8f6a63 100644
--- a/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
+++ b/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
@@ -12,6 +12,7 @@
#include <algorithm>
#include <array>
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h b/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h
index 1fc53a3a607..3143003a770 100644
--- a/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h
+++ b/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h
@@ -6,6 +6,7 @@
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_BLUETOOTH_WEB_BLUETOOTH_DEVICE_ID_H_
#include <array>
+#include <cstdint>
#include <string>
#include "third_party/blink/public/common/common_export.h"
diff --git a/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h b/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h
index c63049b1749..82b27837b5c 100644
--- a/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h
+++ b/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h
@@ -6,6 +6,7 @@
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_ORIGIN_TRIALS_ORIGIN_TRIAL_PUBLIC_KEY_H_
#include <array>
+#include <cstdint>
namespace blink {
diff --git a/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h b/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h
index 80b3150b67b..dc14d2c4841 100644
--- a/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h
+++ b/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h
@@ -116,7 +116,7 @@ class PLATFORM_EXPORT EffectPaintPropertyNode
// An identifier for a document transition shared element. `id.valid()`
// returns true if this has been set, and false otherwise.
- DocumentTransitionSharedElementId document_transition_shared_element_id;
+ blink::DocumentTransitionSharedElementId document_transition_shared_element_id;
// An identifier to tag shared element resources generated and cached in the
// Viz process. This generated resource can be used as content for other
diff --git a/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h b/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
index c7e4f2b3787..e491a1f6845 100644
--- a/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
+++ b/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
@@ -33,6 +33,7 @@
#include <assert.h>
#include <sys/types.h>
+#include <cstdint>
#include <string>
#include "client/linux/handler/microdump_extra_info.h"
diff --git a/chromium/third_party/dawn/src/dawn/native/CacheKey.h b/chromium/third_party/dawn/src/dawn/native/CacheKey.h
index 2d58d76cb6b..a0e021691a6 100644
--- a/chromium/third_party/dawn/src/dawn/native/CacheKey.h
+++ b/chromium/third_party/dawn/src/dawn/native/CacheKey.h
@@ -19,6 +19,7 @@
#include "dawn/common/ityp_array.h"
#include <bitset>
+#include <cstdint>
#include <iostream>
#include <limits>
#include <string>
diff --git a/chromium/third_party/dawn/src/tint/reader/spirv/entry_point_info.h b/chromium/third_party/dawn/src/tint/reader/spirv/entry_point_info.h
index 374bd8302a8..0884eb2a19a 100644
--- a/chromium/third_party/dawn/src/tint/reader/spirv/entry_point_info.h
+++ b/chromium/third_party/dawn/src/tint/reader/spirv/entry_point_info.h
@@ -15,6 +15,7 @@
#ifndef SRC_TINT_READER_SPIRV_ENTRY_POINT_INFO_H_
#define SRC_TINT_READER_SPIRV_ENTRY_POINT_INFO_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/third_party/dawn/src/tint/reader/spirv/namer.h b/chromium/third_party/dawn/src/tint/reader/spirv/namer.h
index fa5fc3a7e95..6cec9346705 100644
--- a/chromium/third_party/dawn/src/tint/reader/spirv/namer.h
+++ b/chromium/third_party/dawn/src/tint/reader/spirv/namer.h
@@ -15,6 +15,7 @@
#ifndef SRC_TINT_READER_SPIRV_NAMER_H_
#define SRC_TINT_READER_SPIRV_NAMER_H_
+#include <cstdint>
#include <string>
#include <unordered_map>
#include <vector>
diff --git a/chromium/third_party/dawn/src/tint/reader/wgsl/token.h b/chromium/third_party/dawn/src/tint/reader/wgsl/token.h
index 7b5b6754ed2..62b1ca7e367 100644
--- a/chromium/third_party/dawn/src/tint/reader/wgsl/token.h
+++ b/chromium/third_party/dawn/src/tint/reader/wgsl/token.h
@@ -15,6 +15,7 @@
#ifndef SRC_TINT_READER_WGSL_TOKEN_H_
#define SRC_TINT_READER_WGSL_TOKEN_H_
+#include <cstdint>
#include <string>
#include <string_view>
#include <variant> // NOLINT: cpplint doesn't recognise this
diff --git a/chromium/third_party/dawn/src/tint/writer/spirv/operand.h b/chromium/third_party/dawn/src/tint/writer/spirv/operand.h
index 46a5deb55bc..4c3080ff259 100644
--- a/chromium/third_party/dawn/src/tint/writer/spirv/operand.h
+++ b/chromium/third_party/dawn/src/tint/writer/spirv/operand.h
@@ -15,6 +15,7 @@
#ifndef SRC_TINT_WRITER_SPIRV_OPERAND_H_
#define SRC_TINT_WRITER_SPIRV_OPERAND_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/third_party/libgav1/src/src/utils/threadpool.cc b/chromium/third_party/libgav1/src/src/utils/threadpool.cc
index a3099e15db9..4072cfb808e 100644
--- a/chromium/third_party/libgav1/src/src/utils/threadpool.cc
+++ b/chromium/third_party/libgav1/src/src/utils/threadpool.cc
@@ -23,6 +23,7 @@
#if defined(__ANDROID__) || defined(__GLIBC__)
#include <sys/types.h>
#include <unistd.h>
+#include <cstdio>
#endif
#include <algorithm>
#include <cassert>
diff --git a/chromium/third_party/pdfium/constants/annotation_flags.h b/chromium/third_party/pdfium/constants/annotation_flags.h
index d2731dac7a3..46bc87ef92a 100644
--- a/chromium/third_party/pdfium/constants/annotation_flags.h
+++ b/chromium/third_party/pdfium/constants/annotation_flags.h
@@ -5,6 +5,8 @@
#ifndef CONSTANTS_ANNOTATION_FLAGS_H_
#define CONSTANTS_ANNOTATION_FLAGS_H_
+#include <cstdint>
+
namespace pdfium {
namespace annotation_flags {
diff --git a/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h b/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h
index 1b4c53815bc..472042fabc4 100644
--- a/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h
+++ b/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h
@@ -18,6 +18,7 @@
#define INCLUDE_PERFETTO_EXT_BASE_UUID_H_
#include <array>
+#include <cstdint>
#include <string>
#include "perfetto/ext/base/optional.h"
diff --git a/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h b/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
index c56f0344f91..bc2386e2131 100644
--- a/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
+++ b/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
@@ -17,6 +17,8 @@
#ifndef SRC_TRACE_PROCESSOR_IMPORTERS_PROTO_PROTO_IMPORTER_MODULE_H_
#define SRC_TRACE_PROCESSOR_IMPORTERS_PROTO_PROTO_IMPORTER_MODULE_H_
+#include <cstdint>
+
#include "perfetto/ext/base/optional.h"
#include "perfetto/trace_processor/status.h"
diff --git a/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h b/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h
index b7c586b80eb..9e073d4e1b8 100644
--- a/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h
+++ b/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h
@@ -2393,6 +2393,10 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeVirtualBlockStatsString(VmaVirtualBlock V
#include <cstring>
#include <utility>
+#if VMA_STATS_STRING_ENABLED
+#include <cstdio>
+#endif // VMA_STATS_STRING_ENABLED
+
#if VMA_RECORDING_ENABLED
#include <chrono>
#if defined(_WIN32)
diff --git a/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h b/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h
index ca249541d0d..534214dbfa4 100644
--- a/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h
+++ b/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h
@@ -12,6 +12,7 @@
#ifndef RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_
#define RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_
+#include <cstdint>
#include <string>
#include <vector>
diff --git a/chromium/ui/base/prediction/kalman_filter.h b/chromium/ui/base/prediction/kalman_filter.h
index 5a0047b1ab1..6a768507448 100644
--- a/chromium/ui/base/prediction/kalman_filter.h
+++ b/chromium/ui/base/prediction/kalman_filter.h
@@ -5,6 +5,8 @@
#ifndef UI_BASE_PREDICTION_KALMAN_FILTER_H_
#define UI_BASE_PREDICTION_KALMAN_FILTER_H_
+#include <cstdint>
+
#include "base/component_export.h"
#include "ui/gfx/geometry/matrix3_f.h"
diff --git a/chromium/ui/events/types/scroll_types.h b/chromium/ui/events/types/scroll_types.h
index 7ff15f0fc5c..136cebc09ed 100644
--- a/chromium/ui/events/types/scroll_types.h
+++ b/chromium/ui/events/types/scroll_types.h
@@ -5,6 +5,8 @@
#ifndef UI_EVENTS_TYPES_SCROLL_TYPES_H_
#define UI_EVENTS_TYPES_SCROLL_TYPES_H_
+#include <cstdint>
+
namespace ui {
enum class ScrollGranularity : uint8_t {
diff --git a/chromium/ui/gfx/geometry/linear_gradient.h b/chromium/ui/gfx/geometry/linear_gradient.h
index 1ad025fec13..bb74ea36ecb 100644
--- a/chromium/ui/gfx/geometry/linear_gradient.h
+++ b/chromium/ui/gfx/geometry/linear_gradient.h
@@ -6,6 +6,7 @@
#define UI_GFX_LINEAR_GRADIENT_H_
#include <array>
+#include <cstdint>
#include <string>
#include "ui/gfx/geometry/geometry_skia_export.h"
diff --git a/chromium/v8/src/base/logging.h b/chromium/v8/src/base/logging.h
index fdac44e31e0..a752dba6a2f 100644
--- a/chromium/v8/src/base/logging.h
+++ b/chromium/v8/src/base/logging.h
@@ -5,6 +5,7 @@
#ifndef V8_BASE_LOGGING_H_
#define V8_BASE_LOGGING_H_
+#include <cstdint>
#include <cstring>
#include <sstream>
#include <string>
diff --git a/chromium/v8/src/inspector/v8-string-conversions.h b/chromium/v8/src/inspector/v8-string-conversions.h
index c1d69c18f0a..eb33c6816a5 100644
--- a/chromium/v8/src/inspector/v8-string-conversions.h
+++ b/chromium/v8/src/inspector/v8-string-conversions.h
@@ -5,6 +5,7 @@
#ifndef V8_INSPECTOR_V8_STRING_CONVERSIONS_H_
#define V8_INSPECTOR_V8_STRING_CONVERSIONS_H_
+#include <cstdint>
#include <string>
// Conversion routines between UT8 and UTF16, used by string-16.{h,cc}. You may