parent
23737a7572
commit
e3c87f1637
@ -1,3 +1,3 @@
|
|||||||
0e4eddd04ec167cb3e60ab5e2d6aafb759a62f8c SOURCES/chromium-131.0.6778.85-clean.tar.xz
|
2eff2cce3fdc518b5fb4859d27cdbdeb5fb56485 SOURCES/chromium-131.0.6778.108-clean.tar.xz
|
||||||
7e5d2c7864c5c83ec789b59c77cd9c20d2594916 SOURCES/linux-arm64-0.19.2.tgz
|
7e5d2c7864c5c83ec789b59c77cd9c20d2594916 SOURCES/linux-arm64-0.19.2.tgz
|
||||||
dea187019741602d57aaf189a80abba261fbd2aa SOURCES/linux-x64-0.19.2.tgz
|
dea187019741602d57aaf189a80abba261fbd2aa SOURCES/linux-x64-0.19.2.tgz
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
SOURCES/chromium-131.0.6778.85-clean.tar.xz
|
SOURCES/chromium-131.0.6778.108-clean.tar.xz
|
||||||
SOURCES/linux-arm64-0.19.2.tgz
|
SOURCES/linux-arm64-0.19.2.tgz
|
||||||
SOURCES/linux-x64-0.19.2.tgz
|
SOURCES/linux-x64-0.19.2.tgz
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -up chromium-131.0.6778.85/ui/qt/qt_shim.cc.me chromium-131.0.6778.85/ui/qt/qt_shim.cc
|
||||||
|
--- chromium-131.0.6778.85/ui/qt/qt_shim.cc.me 2024-11-23 10:04:16.789121846 +0100
|
||||||
|
+++ chromium-131.0.6778.85/ui/qt/qt_shim.cc 2024-11-23 11:40:02.905064702 +0100
|
||||||
|
@@ -265,7 +265,7 @@ FontRenderParams QtShim::GetFontRenderPa
|
||||||
|
FontDescription QtShim::GetFontDescription() const {
|
||||||
|
QFont font = app_.font();
|
||||||
|
return {
|
||||||
|
- .family = String(font.family().toStdString().c_str()),
|
||||||
|
+ .family = String(font.family().toUtf8().constData()),
|
||||||
|
.size_pixels = font.pixelSize(),
|
||||||
|
.size_points = font.pointSize(),
|
||||||
|
.is_italic = IsStyleItalic(font.style()),
|
@ -0,0 +1,32 @@
|
|||||||
|
commit 1ab1a14ad97394d384d8dc6de51bb229625e66d6
|
||||||
|
Author: Benoît Lizé <lizeb@chromium.org>
|
||||||
|
Date: Mon Sep 16 12:01:14 2024 +0200
|
||||||
|
|
||||||
|
[cppgc] Decommit pooled pages by default
|
||||||
|
|
||||||
|
This reduces committed memory by a large amount, which matters on
|
||||||
|
Windows. See the field trial results, which measure committed memory:
|
||||||
|
https://screenshot.googleplex.com/kEBAScqJSEXuRoy
|
||||||
|
|
||||||
|
Bug: chromium:326303884
|
||||||
|
Change-Id: I619257871bcdb7ed50a71f41af341d0df634428a
|
||||||
|
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5864909
|
||||||
|
Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
|
||||||
|
Reviewed-by: Anton Bikineev <bikineev@chromium.org>
|
||||||
|
Commit-Queue: Anton Bikineev <bikineev@chromium.org>
|
||||||
|
Auto-Submit: Benoit Lize <lizeb@chromium.org>
|
||||||
|
Cr-Commit-Position: refs/heads/main@{#96107}
|
||||||
|
|
||||||
|
diff --git a/v8/src/flags/flag-definitions.h b/v8/src/flags/flag-definitions.h
|
||||||
|
index 69946faf5ed..85c4b68612e 100644
|
||||||
|
--- a/v8/src/flags/flag-definitions.h
|
||||||
|
+++ b/v8/src/flags/flag-definitions.h
|
||||||
|
@@ -821,7 +821,7 @@ DEFINE_BOOL(trace_block_coverage, false,
|
||||||
|
"trace collected block coverage information")
|
||||||
|
DEFINE_BOOL(trace_protector_invalidation, false,
|
||||||
|
"trace protector cell invalidations")
|
||||||
|
-DEFINE_BOOL(decommit_pooled_pages, false,
|
||||||
|
+DEFINE_BOOL(decommit_pooled_pages, true,
|
||||||
|
"decommit, rather than discard pooled pages")
|
||||||
|
|
||||||
|
#ifdef V8_MINORMS_STRING_SHORTCUTTING
|
Loading…
Reference in new issue