update more patches
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
Index: chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn
|
--- chromium-140.0.7327.6/components/autofill/core/browser/BUILD.gn 2025/08/01 09:33:04 1.1
|
||||||
===================================================================
|
+++ chromium-140.0.7327.6/components/autofill/core/browser/BUILD.gn 2025/08/01 09:34:47
|
||||||
--- chromium-123.0.6312.46.orig/components/autofill/core/browser/BUILD.gn
|
@@ -75,6 +75,11 @@
|
||||||
+++ chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn
|
|
||||||
@@ -64,6 +64,11 @@
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static_library("browser") {
|
static_library("browser") {
|
||||||
@@ -12,5 +10,5 @@ Index: chromium-123.0.6312.46/components/autofill/core/browser/BUILD.gn
|
|||||||
+ ]
|
+ ]
|
||||||
+ }
|
+ }
|
||||||
sources = [
|
sources = [
|
||||||
"autofill_browser_util.cc",
|
"autofill_ai_form_rationalization.cc",
|
||||||
"autofill_browser_util.h",
|
"autofill_ai_form_rationalization.h",
|
||||||
|
@@ -10,6 +10,8 @@ Fri Aug 1 11:03:29 CEST 2025 - ro@suse.de
|
|||||||
ppc-fedora-fix-unknown-warning-option-messages.diff
|
ppc-fedora-fix-unknown-warning-option-messages.diff
|
||||||
ppc-fedora-0001-sandbox-linux-Update-syscall-helpers-lists-for-ppc64.patch
|
ppc-fedora-0001-sandbox-linux-Update-syscall-helpers-lists-for-ppc64.patch
|
||||||
ppc-fedora-add-ppc64-architecture-to-extensions.diff
|
ppc-fedora-add-ppc64-architecture-to-extensions.diff
|
||||||
|
chromium-102-regex_pattern-array.patch
|
||||||
|
gtk-414.patch
|
||||||
- added patches:
|
- added patches:
|
||||||
chromium-140-revert-newline-config.patch
|
chromium-140-revert-newline-config.patch
|
||||||
(upstream fix 475fa4d21bb8722e9af8e4e707e2adbfd042fd52)
|
(upstream fix 475fa4d21bb8722e9af8e4e707e2adbfd042fd52)
|
||||||
|
@@ -110,7 +110,7 @@ index efe6321149679..239fbf4ca69a1 100644
|
|||||||
- GdkTexture* texture = GetTextureFromRenderNode(node);
|
- GdkTexture* texture = GetTextureFromRenderNode(node);
|
||||||
size_t nbytes = width * height * sizeof(SkColor);
|
size_t nbytes = width * height * sizeof(SkColor);
|
||||||
SkColor* pixels = reinterpret_cast<SkColor*>(g_malloc(nbytes));
|
SkColor* pixels = reinterpret_cast<SkColor*>(g_malloc(nbytes));
|
||||||
+ memset(pixels, 0, nbytes);
|
+ UNSAFE_TODO(memset(pixels, 0, nbytes));
|
||||||
size_t stride = sizeof(SkColor) * width;
|
size_t stride = sizeof(SkColor) * width;
|
||||||
- gdk_texture_download(texture, reinterpret_cast<guchar*>(pixels), stride);
|
- gdk_texture_download(texture, reinterpret_cast<guchar*>(pixels), stride);
|
||||||
+ if (GdkTexture* texture = GetTextureFromRenderNode(node)) {
|
+ if (GdkTexture* texture = GetTextureFromRenderNode(node)) {
|
||||||
@@ -118,7 +118,7 @@ index efe6321149679..239fbf4ca69a1 100644
|
|||||||
+ }
|
+ }
|
||||||
SkColor fg = GtkStyleContextGetColor(button_context);
|
SkColor fg = GtkStyleContextGetColor(button_context);
|
||||||
for (int i = 0; i < width * height; ++i) {
|
for (int i = 0; i < width * height; ++i) {
|
||||||
pixels[i] = SkColorSetA(fg, SkColorGetA(pixels[i]));
|
UNSAFE_TODO(pixels[i]) =
|
||||||
@@ -199,7 +201,7 @@ void CalculateUnscaledButtonSize(
|
@@ -199,7 +201,7 @@ void CalculateUnscaledButtonSize(
|
||||||
gfx::Size* button_size,
|
gfx::Size* button_size,
|
||||||
gfx::Insets* button_margin) {
|
gfx::Insets* button_margin) {
|
||||||
|
Reference in New Issue
Block a user