Skip to content

Commit 11c3d5b

Browse files
authored
Update to 148.0.7778.96 (#575)
1 parent 2bdcfb6 commit 11c3d5b

15 files changed

Lines changed: 1689 additions & 443 deletions

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def main():
163163
}
164164

165165
# Prepare source folder
166-
if args.tarball or args.ci:
166+
if args.tarball:
167167
# Download chromium tarball
168168
get_logger().info('Downloading chromium tarball...')
169169
download_info = downloads.DownloadInfo([_ROOT_DIR / 'ungoogled-chromium' / 'downloads.ini'])

domain_substitution.list

Lines changed: 311 additions & 406 deletions
Large diffs are not rendered by default.

flags.windows.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
chrome_pgo_phase=0
1+
chrome_pgo_phase=2
22
enable_swiftshader=false
33
ffmpeg_branding="Chrome"
44
is_clang=true

patches/ungoogled-chromium/windows/windows-disable-clang-version-check.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/build/config/compiler/BUILD.gn
22
+++ b/build/config/compiler/BUILD.gn
3-
@@ -1760,8 +1760,7 @@ config("compiler_deterministic") {
3+
@@ -1785,8 +1785,7 @@ config("compiler_deterministic") {
44
}
55

66
config("clang_revision") {

patches/ungoogled-chromium/windows/windows-disable-download-warning-prompt.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/components/download/internal/common/download_item_impl.cc
22
+++ b/components/download/internal/common/download_item_impl.cc
3-
@@ -2505,7 +2505,7 @@ void DownloadItemImpl::SetDangerType(Dow
3+
@@ -2500,7 +2500,7 @@ void DownloadItemImpl::SetDangerType(Dow
44
TRACE_EVENT_SCOPE_THREAD, "danger_type",
55
GetDownloadDangerNames(danger_type).c_str());
66
}

patches/ungoogled-chromium/windows/windows-disable-encryption.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
#endif // CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_ENTRIES_H_
1616
--- a/components/os_crypt/async/browser/dpapi_key_provider.cc
1717
+++ b/components/os_crypt/async/browser/dpapi_key_provider.cc
18-
@@ -14,6 +14,7 @@
18+
@@ -10,6 +10,7 @@
1919
#include <wincrypt.h>
2020

2121
#include "base/base64.h"
2222
+#include "base/command_line.h"
23+
#include "base/compiler_specific.h"
2324
#include "base/logging.h"
2425
#include "base/metrics/histogram_functions.h"
25-
#include "base/notreached.h"
26-
@@ -41,6 +42,9 @@ constexpr uint8_t kDPAPIKeyPrefix[] = {'
26+
@@ -38,6 +39,9 @@ constexpr uint8_t kDPAPIKeyPrefix[] = {'
2727

2828
std::optional<std::vector<uint8_t>> DecryptKeyWithDPAPI(
2929
base::span<const uint8_t> ciphertext) {

patches/ungoogled-chromium/windows/windows-disable-event-log.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
base::StatisticsRecorder::InitLogOnShutdown();
4444
--- a/chrome/elevation_service/BUILD.gn
4545
+++ b/chrome/elevation_service/BUILD.gn
46-
@@ -98,7 +98,6 @@ source_set("service_lib") {
46+
@@ -99,7 +99,6 @@ source_set("service_lib") {
4747
deps = [
4848
":lib",
4949
"//base",

patches/ungoogled-chromium/windows/windows-fix-building-gn.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
--- a/tools/gn/build/gen.py
3939
+++ b/tools/gn/build/gen.py
40-
@@ -588,6 +588,7 @@ def WriteGNNinja(path, platform, host, o
40+
@@ -596,6 +596,7 @@ def WriteGNNinja(path, platform, host, o
4141
'/D_SCL_SECURE_NO_DEPRECATE',
4242
'/D_UNICODE',
4343
'/D_WIN32_WINNT=0x0A00',

patches/ungoogled-chromium/windows/windows-fix-building-without-safebrowsing.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"//build:branding_buildflags",
1818
--- a/chrome/browser/chrome_content_browser_client.cc
1919
+++ b/chrome/browser/chrome_content_browser_client.cc
20-
@@ -5242,7 +5242,6 @@ std::wstring ChromeContentBrowserClient:
20+
@@ -5282,7 +5282,6 @@ std::wstring ChromeContentBrowserClient:
2121
#endif
2222
case sandbox::mojom::Sandbox::kPrintCompositor:
2323
case sandbox::mojom::Sandbox::kAudio:
2424
- case sandbox::mojom::Sandbox::kScreenAI:
2525
case sandbox::mojom::Sandbox::kSpeechRecognition:
2626
case sandbox::mojom::Sandbox::kPdfConversion:
2727
case sandbox::mojom::Sandbox::kService:
28-
@@ -5338,7 +5337,6 @@ bool ChromeContentBrowserClient::PreSpaw
28+
@@ -5378,7 +5377,6 @@ bool ChromeContentBrowserClient::PreSpaw
2929
case sandbox::mojom::Sandbox::kPrintBackend:
3030
#endif
3131
case sandbox::mojom::Sandbox::kPrintCompositor:
@@ -51,7 +51,7 @@
5151
+#endif
5252
--- a/chrome/browser/signin/signin_util_win.cc
5353
+++ b/chrome/browser/signin/signin_util_win.cc
54-
@@ -346,12 +346,6 @@ bool IsGCPWUsedInOtherProfile(Profile* p
54+
@@ -345,12 +345,6 @@ bool IsGCPWUsedInOtherProfile(Profile* p
5555
}
5656

5757
void SigninWithCredentialProviderIfPossible(Profile* profile) {

patches/ungoogled-chromium/windows/windows-fix-command-ids.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define IDC_RESTORE_WINDOW 34052
2020
#endif
2121

22-
@@ -93,7 +93,7 @@
22+
@@ -94,7 +94,7 @@
2323
#define IDC_WEB_APP_MENU_APP_INFO 34063
2424
#define IDC_WEB_APP_UPGRADE_DIALOG 34064
2525

@@ -28,7 +28,7 @@
2828
// Move window to other user commands
2929
#define IDC_VISIT_DESKTOP_OF_LRU_USER_2 34080
3030
#define IDC_VISIT_DESKTOP_OF_LRU_USER_3 34081
31-
@@ -514,7 +514,7 @@
31+
@@ -516,7 +516,7 @@
3232
#define IDC_MEDIA_ROUTER_TOGGLE_MEDIA_REMOTING 51208
3333

3434
// Context menu items for media toolbar button
@@ -37,7 +37,7 @@
3737
#define IDC_MEDIA_TOOLBAR_CONTEXT_REPORT_CAST_ISSUE 51209
3838
#endif
3939
#define IDC_MEDIA_TOOLBAR_CONTEXT_SHOW_OTHER_SESSIONS 51210
40-
@@ -551,7 +551,7 @@
40+
@@ -553,7 +553,7 @@
4141
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS 52411
4242
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS_TOGGLE_ONCE 52412
4343

0 commit comments

Comments
 (0)