Skip to content

Commit a078b9b

Browse files
committed
Update to Chromium 139.0.7258.66
1 parent 2da6aa7 commit a078b9b

File tree

74 files changed

+1222
-1398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1222
-1398
lines changed

chromium_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
138.0.7204.183
1+
139.0.7258.66

devutils/update_lists.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@
6666
'third_party/node/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',
6767
# Exclusion for performance tracing
6868
'third_party/perfetto/src/trace_processor/importers/proto/atoms.descriptor',
69+
# Exclusion for jiff
70+
'third_party/rust/chromium_crates_io/vendor/jiff-tzdb-v0_1/concatenated-zoneinfo.dat',
6971
# Exclusions for safe file extensions
7072
'*.avif',
7173
'*.ttf',

domain_substitution.list

Lines changed: 227 additions & 101 deletions
Large diffs are not rendered by default.

flags.gn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ clang_use_chrome_plugins=false
44
disable_fieldtrial_testing_config=true
55
enable_hangout_services_extension=false
66
enable_mdns=false
7-
enable_nacl=false
87
enable_remoting=false
98
enable_reporting=false
109
enable_service_discovery=false

patches/core/bromite/disable-fetching-field-trials.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Subject: Disable fetching of all field trials
5151
/**
5252
--- a/components/variations/service/variations_service.cc
5353
+++ b/components/variations/service/variations_service.cc
54-
@@ -224,22 +224,7 @@ bool GetInstanceManipulations(const net:
54+
@@ -223,22 +223,7 @@ bool GetInstanceManipulations(const net:
5555
// Variations seed fetching is only enabled in official Chrome builds, if a URL
5656
// is specified on the command line, and for testing.
5757
bool IsFetchingEnabled() {

patches/core/inox-patchset/0001-fix-building-without-safebrowsing.patch

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/chrome/browser/BUILD.gn
22
+++ b/chrome/browser/BUILD.gn
3-
@@ -3752,8 +3752,6 @@ static_library("browser") {
3+
@@ -3797,8 +3797,6 @@ static_library("browser") {
44
"download/download_auto_open_policy_handler.cc",
55
"download/download_auto_open_policy_handler.h",
66
"download/download_commands.cc",
@@ -11,7 +11,7 @@
1111
"download/download_dir_util.cc",
1212
--- a/chrome/browser/chrome_content_browser_client_navigation_throttles.cc
1313
+++ b/chrome/browser/chrome_content_browser_client_navigation_throttles.cc
14-
@@ -391,10 +391,6 @@ void CreateAndAddChromeThrottlesForNavig
14+
@@ -388,10 +388,6 @@ void CreateAndAddChromeThrottlesForNavig
1515
registry.AddThrottle(std::make_unique<PolicyBlocklistNavigationThrottle>(
1616
registry, handle.GetWebContents()->GetBrowserContext()));
1717

@@ -24,7 +24,7 @@
2424
base::BindOnce(&IsInHostedApp),
2525
--- a/chrome/browser/component_updater/file_type_policies_component_installer.cc
2626
+++ b/chrome/browser/component_updater/file_type_policies_component_installer.cc
27-
@@ -38,21 +38,6 @@ const uint8_t kFileTypePoliciesPublicKey
27+
@@ -36,21 +36,6 @@ const uint8_t kFileTypePoliciesPublicKey
2828
const char kFileTypePoliciesManifestName[] = "File Type Policies";
2929

3030
void LoadFileTypesFromDisk(const base::FilePath& pb_path) {
@@ -48,7 +48,7 @@
4848
} // namespace
4949
--- a/chrome/browser/download/download_item_model.cc
5050
+++ b/chrome/browser/download/download_item_model.cc
51-
@@ -128,7 +128,7 @@ class DownloadItemModelData : public bas
51+
@@ -129,7 +129,7 @@ class DownloadItemModelData : public bas
5252

5353
// Danger level of the file determined based on the file type and whether
5454
// there was a user action associated with the download.
@@ -57,7 +57,7 @@
5757

5858
// Whether the download is currently being revived.
5959
bool is_being_revived_ = false;
60-
@@ -512,13 +512,13 @@ void DownloadItemModel::SetShouldPreferO
60+
@@ -513,13 +513,13 @@ void DownloadItemModel::SetShouldPreferO
6161
data->should_prefer_opening_in_browser_ = preference;
6262
}
6363

@@ -97,7 +97,7 @@
9797
@@ -1430,44 +1426,7 @@ void DownloadsAcceptDangerFunction::Prom
9898
return;
9999
}
100-
RecordApiFunctions(DOWNLOADS_FUNCTION_ACCEPT_DANGER);
100+
RecordApiFunctions(DownloadsFunctionName::kDownloadsFunctionAcceptDanger);
101101
- // DownloadDangerPrompt displays a modal dialog using native widgets that the
102102
- // user must either accept or cancel. It cannot be scripted.
103103
- DownloadDangerPrompt* prompt = DownloadDangerPrompt::Create(
@@ -180,7 +180,7 @@
180180
class DownloadsShowFunction : public ExtensionFunction {
181181
--- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
182182
+++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
183-
@@ -702,18 +702,6 @@ void WebstorePrivateBeginInstallWithMani
183+
@@ -703,18 +703,6 @@ void WebstorePrivateBeginInstallWithMani
184184

185185
void WebstorePrivateBeginInstallWithManifest3Function::
186186
ReportFrictionAcceptedEvent() {
@@ -251,17 +251,17 @@
251251
]
252252
+ }
253253

254-
# Note: is_android is not equivalent to safe_browsing_mode == 2.
255-
# Sources and dependencies added to this block must not depend on anything
256-
@@ -579,6 +581,7 @@ static_library("advanced_protection") {
254+
if (enable_extensions) {
255+
deps += [ "//chrome/browser/ui/web_applications" ]
256+
@@ -598,6 +600,7 @@ static_library("advanced_protection") {
257257
}
258258

259259
source_set("metrics_collector") {
260260
+ if (false) {
261261
sources = [
262262
"safe_browsing_metrics_collector_factory.cc",
263263
"safe_browsing_metrics_collector_factory.h",
264-
@@ -598,6 +601,7 @@ source_set("metrics_collector") {
264+
@@ -617,6 +620,7 @@ source_set("metrics_collector") {
265265
"//components/safe_browsing/core/common:safe_browsing_prefs",
266266
"//content/public/browser",
267267
]

patches/core/inox-patchset/0003-disable-autofill-download-manager.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc
22
+++ b/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc
3-
@@ -924,93 +924,6 @@ std::tuple<GURL, std::string> AutofillCr
3+
@@ -938,93 +938,6 @@ std::tuple<GURL, std::string> AutofillCr
44
}
55

66
bool AutofillCrowdsourcingManager::StartRequest(FormRequestData request_data) {

patches/core/inox-patchset/0005-disable-default-extensions.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
#if BUILDFLAG(IS_CHROMEOS)
2525
--- a/chrome/browser/extensions/external_component_loader.cc
2626
+++ b/chrome/browser/extensions/external_component_loader.cc
27-
@@ -37,9 +37,6 @@ ExternalComponentLoader::~ExternalCompon
28-
27+
@@ -38,9 +38,6 @@ ExternalComponentLoader::~ExternalCompon
2928
void ExternalComponentLoader::StartLoading() {
3029
auto prefs = base::Value::Dict();
31-
-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
30+
// Skip in-app payments app on Android. crbug.com/409396604
31+
-#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID)
3232
- AddExternalExtension(extension_misc::kInAppPaymentsSupportAppId, prefs);
33-
-#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
33+
-#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID)
3434

3535
#if BUILDFLAG(IS_CHROMEOS)
3636
{

patches/core/inox-patchset/0015-disable-update-pings.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/chrome/updater/configurator.cc
22
+++ b/chrome/updater/configurator.cc
3-
@@ -133,7 +133,7 @@ base::TimeDelta Configurator::UpdateDela
3+
@@ -147,7 +147,7 @@ base::TimeDelta Configurator::UpdateDela
44

55
std::vector<GURL> Configurator::UpdateUrl() const {
66
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);

patches/core/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ by default.
167167
DownloadFeedbackFactory* DownloadFeedback::factory_ = nullptr;
168168
--- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
169169
+++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
170-
@@ -273,7 +273,7 @@ GURL SpellcheckHunspellDictionary::GetDi
170+
@@ -274,7 +274,7 @@ GURL SpellcheckHunspellDictionary::GetDi
171171
DCHECK(!bdict_file.empty());
172172

173173
static const char kDownloadServerUrl[] =
@@ -189,7 +189,7 @@ by default.
189189

190190
--- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc
191191
+++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc
192-
@@ -75,17 +75,17 @@ namespace {
192+
@@ -76,17 +76,17 @@ namespace {
193193
// The URL for the the Learn More page shown on incognito new tab.
194194
const char kLearnMoreIncognitoUrl[] =
195195
#if BUILDFLAG(IS_CHROMEOS)

0 commit comments

Comments
 (0)