* CVE-2025-9864: Use after free in V8 * CVE-2025-9865: Inappropriate implementation in Toolbar * CVE-2025-9866: Inappropriate implementation in Extensions * CVE-2025-9867: Inappropriate implementation in Downloads
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
Index: chromium-140.0.7339.41/components/variations/proto/study.proto
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/components/variations/proto/study.proto
|
|
+++ chromium-140.0.7339.41/components/variations/proto/study.proto
|
|
@@ -262,6 +262,9 @@ message Study {
|
|
// A Mac-only value, indicating an x86-64 binary running on an arm64 host
|
|
// via "Rosetta 2" binary translation.
|
|
TRANSLATED_X86_64 = 4;
|
|
+
|
|
+ // A POSIX-only value, indicating an OpenPOWER host
|
|
+ PPC64 = 5;
|
|
}
|
|
|
|
// Enum to pass as optional bool.
|
|
Index: chromium-140.0.7339.41/components/variations/service/variations_field_trial_creator.cc
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/components/variations/service/variations_field_trial_creator.cc
|
|
+++ chromium-140.0.7339.41/components/variations/service/variations_field_trial_creator.cc
|
|
@@ -105,6 +105,9 @@ Study::CpuArchitecture GetCurrentCpuArch
|
|
if (process_arch == "x86") {
|
|
return Study::X86_32;
|
|
}
|
|
+ if (process_arch == "PPC_64") {
|
|
+ return Study::PPC64;
|
|
+ }
|
|
if (process_arch == "x86_64") {
|
|
std::string os_arch = base::SysInfo::OperatingSystemArchitecture();
|
|
if (base::StartsWith(os_arch, "arm",
|