mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-01 13:25:46 +02:00

Python2 is removed from Debian stable/unstable and latest Ubuntu. So, we need to use a newest version of Qt (here Qt 6.4.3). Change-Id: I6c8b1eee644aab787d54e467f64011762ffd7548
444 lines
20 KiB
Diff
444 lines
20 KiB
Diff
qtwebengine/src/3rdparty/chromium/base/debug/profiler.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/base/debug/stack_trace.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/base/logging.h | 2 ++
|
|
qtwebengine/src/3rdparty/chromium/cc/trees/target_property.cc | 2 ++
|
|
.../chromium/content/public/browser/browsing_data_remover_delegate.h | 1 +
|
|
.../chromium/device/base/synchronization/one_writer_seqlock.cc | 1 +
|
|
.../extensions/browser/api/audio/audio_device_id_calculator.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/extensions/common/constants.h | 2 ++
|
|
.../3rdparty/chromium/gpu/command_buffer/common/webgpu_cmd_enums.h | 2 ++
|
|
qtwebengine/src/3rdparty/chromium/gpu/config/gpu_feature_info.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/gpu/config/gpu_preferences.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/gpu/config/gpu_util.h | 2 ++
|
|
.../ppapi/utility/completion_callback_factory_thread_traits.h | 6 ++++--
|
|
.../abseil-cpp/absl/strings/internal/str_format/extension.h | 1 +
|
|
.../3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderLang.h | 2 +-
|
|
.../3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h | 1 +
|
|
.../third_party/blink/renderer/platform/graphics/dark_mode_types.h | 2 ++
|
|
.../breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h | 1 +
|
|
.../3rdparty/chromium/third_party/libgav1/src/src/utils/threadpool.cc | 1 +
|
|
.../3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h | 2 ++
|
|
.../chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h | 1 +
|
|
.../src/trace_processor/importers/proto/proto_importer_module.h | 2 ++
|
|
.../src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp | 4 ++++
|
|
.../src/3rdparty/chromium/third_party/webrtc/call/rtp_demuxer.h | 1 +
|
|
.../chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h | 1 +
|
|
.../3rdparty/chromium/ui/base/ime/linux/linux_input_method_context.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/ui/events/gesture_event_details.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/ui/events/types/scroll_types.h | 2 ++
|
|
qtwebengine/src/3rdparty/chromium/v8/src/base/logging.h | 1 +
|
|
qtwebengine/src/3rdparty/chromium/v8/src/base/macros.h | 1 +
|
|
.../src/3rdparty/chromium/v8/src/inspector/v8-string-conversions.h | 1 +
|
|
qtwebengine/src/core/browsing_data_remover_delegate_qt.h | 2 ++
|
|
32 files changed, 48 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/base/debug/profiler.h b/qtwebengine/src/3rdparty/chromium/base/debug/profiler.h
|
|
index 1229e06..c7ed55e 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/base/debug/profiler.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/base/debug/profiler.h
|
|
@@ -5,6 +5,7 @@
|
|
#ifndef BASE_DEBUG_PROFILER_H_
|
|
#define BASE_DEBUG_PROFILER_H_
|
|
|
|
+#include <cstdint>
|
|
#include <stddef.h>
|
|
|
|
#include <string>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/base/debug/stack_trace.h b/qtwebengine/src/3rdparty/chromium/base/debug/stack_trace.h
|
|
index 60c3c5c..6c8021c 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/base/debug/stack_trace.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/base/debug/stack_trace.h
|
|
@@ -7,6 +7,7 @@
|
|
|
|
#include <stddef.h>
|
|
|
|
+#include <cstdint>
|
|
#include <iosfwd>
|
|
#include <string>
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/base/logging.h b/qtwebengine/src/3rdparty/chromium/base/logging.h
|
|
index a3ff92f..c272f79 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/base/logging.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/base/logging.h
|
|
@@ -7,6 +7,8 @@
|
|
|
|
#include <stddef.h>
|
|
|
|
+
|
|
+#include <cstdint>
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <sstream>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/cc/trees/target_property.cc b/qtwebengine/src/3rdparty/chromium/cc/trees/target_property.cc
|
|
index 96f8c3b..c3f087b 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/cc/trees/target_property.cc
|
|
+++ b/qtwebengine/src/3rdparty/chromium/cc/trees/target_property.cc
|
|
@@ -6,6 +6,8 @@
|
|
|
|
#include "ui/gfx/animation/keyframe/target_property.h"
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace cc {
|
|
|
|
static_assert(TargetProperty::LAST_TARGET_PROPERTY <
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h b/qtwebengine/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h
|
|
index 3069c85..f4614b7 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.cc b/qtwebengine/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.cc
|
|
index 80fd26f..3f08972 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.cc
|
|
+++ b/qtwebengine/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.cc
|
|
@@ -3,6 +3,7 @@
|
|
// found in the LICENSE file.
|
|
|
|
#include "device/base/synchronization/one_writer_seqlock.h"
|
|
+#include <cstdint>
|
|
|
|
#include "base/threading/platform_thread.h"
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/extensions/browser/api/audio/audio_device_id_calculator.h b/qtwebengine/src/3rdparty/chromium/extensions/browser/api/audio/audio_device_id_calculator.h
|
|
index c24205c..ee67ecf 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/extensions/browser/api/audio/audio_device_id_calculator.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/extensions/browser/api/audio/audio_device_id_calculator.h
|
|
@@ -5,6 +5,7 @@
|
|
#ifndef EXTENSIONS_BROWSER_API_AUDIO_AUDIO_DEVICE_ID_CALCULATOR_H_
|
|
#define EXTENSIONS_BROWSER_API_AUDIO_AUDIO_DEVICE_ID_CALCULATOR_H_
|
|
|
|
+#include <cstdint>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/extensions/common/constants.h b/qtwebengine/src/3rdparty/chromium/extensions/common/constants.h
|
|
index 9ac68e2..ef27610 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/extensions/common/constants.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/extensions/common/constants.h
|
|
@@ -10,6 +10,8 @@
|
|
#include "build/chromeos_buildflags.h"
|
|
#include "extensions/common/extensions_export.h"
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace extensions {
|
|
|
|
// Scheme we serve extension content from.
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/gpu/command_buffer/common/webgpu_cmd_enums.h b/qtwebengine/src/3rdparty/chromium/gpu/command_buffer/common/webgpu_cmd_enums.h
|
|
index a9c7adb..943bd4e 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/gpu/command_buffer/common/webgpu_cmd_enums.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/gpu/command_buffer/common/webgpu_cmd_enums.h
|
|
@@ -7,6 +7,8 @@
|
|
|
|
#include <stdint.h>
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace gpu {
|
|
namespace webgpu {
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_feature_info.h b/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_feature_info.h
|
|
index 027f1a5..70759b2 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_feature_info.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_preferences.h b/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_preferences.h
|
|
index 3ea2191..0a1ae11 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_preferences.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_preferences.h
|
|
@@ -5,6 +5,7 @@
|
|
#ifndef GPU_CONFIG_GPU_PREFERENCES_H_
|
|
#define GPU_CONFIG_GPU_PREFERENCES_H_
|
|
|
|
+#include <cstdint>
|
|
#include <stddef.h>
|
|
#include <string>
|
|
#include <vector>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_util.h b/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_util.h
|
|
index f72970c..d7f0b7d 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_util.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/gpu/config/gpu_util.h
|
|
@@ -5,6 +5,8 @@
|
|
#ifndef GPU_CONFIG_GPU_UTIL_H_
|
|
#define GPU_CONFIG_GPU_UTIL_H_
|
|
|
|
+#include <cstdint>
|
|
+
|
|
#include "build/build_config.h"
|
|
#include "gpu/config/gpu_feature_info.h"
|
|
#include "gpu/gpu_export.h"
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/ppapi/utility/completion_callback_factory_thread_traits.h b/qtwebengine/src/3rdparty/chromium/ppapi/utility/completion_callback_factory_thread_traits.h
|
|
index b4fdb9a..375d3ef 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/ppapi/utility/completion_callback_factory_thread_traits.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/ppapi/utility/completion_callback_factory_thread_traits.h
|
|
@@ -38,6 +38,10 @@ namespace pp {
|
|
/// As a further optimization, we can add support for this later.
|
|
class ThreadSafeThreadTraits {
|
|
public:
|
|
+
|
|
+ typedef pp::Lock Lock;
|
|
+ typedef pp::AutoLock AutoLock;
|
|
+
|
|
class RefCount {
|
|
public:
|
|
/// Default constructor. In debug mode, this checks that the object is being
|
|
@@ -67,8 +71,6 @@ class ThreadSafeThreadTraits {
|
|
int32_t ref_;
|
|
};
|
|
|
|
- typedef pp::Lock Lock;
|
|
- typedef pp::AutoLock AutoLock;
|
|
};
|
|
|
|
/// The non-thread-safe version of thread traits. Using this class as the
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h b/qtwebengine/src/3rdparty/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
|
|
index c47536d..443f47a 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
|
|
@@ -18,6 +18,7 @@
|
|
|
|
#include <limits.h>
|
|
|
|
+#include <cstdint>
|
|
#include <cstddef>
|
|
#include <cstring>
|
|
#include <ostream>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderLang.h b/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderLang.h
|
|
index e13aa22..0ce8484 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderLang.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderLang.h
|
|
@@ -7,7 +7,7 @@
|
|
#define GLSLANG_SHADERLANG_H_
|
|
|
|
#include <stddef.h>
|
|
-
|
|
+#include <cstdint>
|
|
#include "KHR/khrplatform.h"
|
|
|
|
#include <array>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h b/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
|
|
index 18175e1..2833285 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h
|
|
@@ -14,6 +14,7 @@
|
|
#include <array>
|
|
#include <string>
|
|
#include <vector>
|
|
+#include <cstdint>
|
|
|
|
// This type is defined here to simplify ANGLE's integration with glslang for SPIR-V.
|
|
using ShCompileOptions = uint64_t;
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/dark_mode_types.h b/qtwebengine/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/dark_mode_types.h
|
|
index 14c5548..43c9a8d 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/dark_mode_types.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/dark_mode_types.h
|
|
@@ -5,6 +5,8 @@
|
|
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_DARK_MODE_TYPES_H_
|
|
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_DARK_MODE_TYPES_H_
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace blink {
|
|
|
|
enum class DarkModeResult : uint8_t {
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h b/qtwebengine/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
|
|
index c7e4f2b..f30ce91 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/breakpad/breakpad/src/client/linux/handler/minidump_descriptor.h
|
|
@@ -34,6 +34,7 @@
|
|
#include <sys/types.h>
|
|
|
|
#include <string>
|
|
+#include <cstdint>
|
|
|
|
#include "client/linux/handler/microdump_extra_info.h"
|
|
#include "common/using_std_string.h"
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/libgav1/src/src/utils/threadpool.cc b/qtwebengine/src/3rdparty/chromium/third_party/libgav1/src/src/utils/threadpool.cc
|
|
index a3099e1..2e6f0ee 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/libgav1/src/src/utils/threadpool.cc
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/libgav1/src/src/utils/threadpool.cc
|
|
@@ -30,6 +30,7 @@
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
+#include <cstdio>
|
|
#include <new>
|
|
#include <utility>
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h b/qtwebengine/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h
|
|
index d2731da..46bc87e 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h b/qtwebengine/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h
|
|
index 1b4c538..472042f 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h b/qtwebengine/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
|
|
index c56f034..cd78249 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/proto/proto_importer_module.h
|
|
@@ -20,6 +20,8 @@
|
|
#include "perfetto/ext/base/optional.h"
|
|
#include "perfetto/trace_processor/status.h"
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace perfetto {
|
|
|
|
namespace protos {
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp b/qtwebengine/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp
|
|
index 3164650..512a269 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp
|
|
@@ -10,6 +10,10 @@
|
|
|
|
#include <algorithm> // std::lower_bound
|
|
|
|
+#include <string.h>
|
|
+#include <algorithm>
|
|
+#include <iterator>
|
|
+
|
|
static constexpr const char* gColorNames[] = {
|
|
"aliceblue",
|
|
"antiquewhite",
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/webrtc/call/rtp_demuxer.h b/qtwebengine/src/3rdparty/chromium/third_party/webrtc/call/rtp_demuxer.h
|
|
index 5fd37b4..ce70405 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/webrtc/call/rtp_demuxer.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/third_party/webrtc/call/rtp_demuxer.h
|
|
@@ -11,6 +11,7 @@
|
|
#ifndef CALL_RTP_DEMUXER_H_
|
|
#define CALL_RTP_DEMUXER_H_
|
|
|
|
+#include <cstdint>
|
|
#include <map>
|
|
#include <string>
|
|
#include <utility>
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h b/qtwebengine/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h
|
|
index ca24954..534214d 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/ui/base/ime/linux/linux_input_method_context.h b/qtwebengine/src/3rdparty/chromium/ui/base/ime/linux/linux_input_method_context.h
|
|
index 708d6c9..898016d 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/ui/base/ime/linux/linux_input_method_context.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/ui/base/ime/linux/linux_input_method_context.h
|
|
@@ -8,6 +8,7 @@
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
+#include <cstdint>
|
|
#include "base/component_export.h"
|
|
#include "ui/base/ime/text_input_type.h"
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/ui/events/gesture_event_details.h b/qtwebengine/src/3rdparty/chromium/ui/events/gesture_event_details.h
|
|
index d97a696..68b18d8 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/ui/events/gesture_event_details.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/ui/events/gesture_event_details.h
|
|
@@ -5,6 +5,7 @@
|
|
#ifndef UI_EVENTS_GESTURE_EVENT_DETAILS_H_
|
|
#define UI_EVENTS_GESTURE_EVENT_DETAILS_H_
|
|
|
|
+#include <cstdint>
|
|
#include <string.h>
|
|
|
|
#include "base/check_op.h"
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/ui/events/types/scroll_types.h b/qtwebengine/src/3rdparty/chromium/ui/events/types/scroll_types.h
|
|
index 7ff15f0..136cebc 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/ui/events/types/scroll_types.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/v8/src/base/logging.h b/qtwebengine/src/3rdparty/chromium/v8/src/base/logging.h
|
|
index fdac44e..a752dba 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/v8/src/base/logging.h
|
|
+++ b/qtwebengine/src/3rdparty/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/qtwebengine/src/3rdparty/chromium/v8/src/base/macros.h b/qtwebengine/src/3rdparty/chromium/v8/src/base/macros.h
|
|
index 61644ff..6fbc037 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/v8/src/base/macros.h
|
|
+++ b/qtwebengine/src/3rdparty/chromium/v8/src/base/macros.h
|
|
@@ -5,6 +5,7 @@
|
|
#ifndef V8_BASE_MACROS_H_
|
|
#define V8_BASE_MACROS_H_
|
|
|
|
+#include <cstdint>
|
|
#include <limits>
|
|
#include <type_traits>
|
|
|
|
diff --git a/qtwebengine/src/3rdparty/chromium/v8/src/inspector/v8-string-conversions.h b/qtwebengine/src/3rdparty/chromium/v8/src/inspector/v8-string-conversions.h
|
|
index c1d69c1..eb33c68 100644
|
|
--- a/qtwebengine/src/3rdparty/chromium/v8/src/inspector/v8-string-conversions.h
|
|
+++ b/qtwebengine/src/3rdparty/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
|
|
diff --git a/qtwebengine/src/core/browsing_data_remover_delegate_qt.h b/qtwebengine/src/core/browsing_data_remover_delegate_qt.h
|
|
index 4e690ff..dfa884c 100644
|
|
--- a/qtwebengine/src/core/browsing_data_remover_delegate_qt.h
|
|
+++ b/qtwebengine/src/core/browsing_data_remover_delegate_qt.h
|
|
@@ -6,6 +6,8 @@
|
|
|
|
#include "content/public/browser/browsing_data_remover_delegate.h"
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace QtWebEngineCore {
|
|
|
|
class BrowsingDataRemoverDelegateQt : public content::BrowsingDataRemoverDelegate {
|