From c67550c6aae838a64c5b1662b2b4ba6a0c08bd7e Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Tue, 21 Apr 2026 12:08:12 +0000 Subject: [PATCH 1/6] Update to chromium version 147.0.7727.101 --- versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/versions.txt b/versions.txt index 5266b1f3..0b24bebd 100644 --- a/versions.txt +++ b/versions.txt @@ -1,3 +1,3 @@ -chromium_version="147.0.7727.49" -cromite_branch="v147.0.7727.56-271900671db643de04aa9f909f0dcc3415c8b827" -ungoogled_chromium_branch="147.0.7727.55-1" +chromium_version="147.0.7727.101" +cromite_branch="master" +ungoogled_chromium_branch="147.0.7727.101-1" -- GitLab From fd8b470e3d0eb6424bca5c5cd5f34333c4a8b908 Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Tue, 21 Apr 2026 12:11:11 +0000 Subject: [PATCH 2/6] [Auto] Update cromite submodule --- build/cromite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cromite b/build/cromite index 1468382f..79b95d83 160000 --- a/build/cromite +++ b/build/cromite @@ -1 +1 @@ -Subproject commit 1468382f54169aba5f75f1c775ac233b05ae3456 +Subproject commit 79b95d83fe4e37211f5a44a524a05753ff8fed22 -- GitLab From 6e9b757c3f7bf356317e084d990c2180758fc085 Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Tue, 21 Apr 2026 12:13:00 +0000 Subject: [PATCH 3/6] [Auto] Update domain substitution --- domain_substitution/domain_substitution.list | 2 ++ 1 file changed, 2 insertions(+) diff --git a/domain_substitution/domain_substitution.list b/domain_substitution/domain_substitution.list index beb5fd0b..965cf92e 100644 --- a/domain_substitution/domain_substitution.list +++ b/domain_substitution/domain_substitution.list @@ -2968,6 +2968,7 @@ components/contextual_tasks/public/contextual_task_context_unittest.cc components/contextual_tasks/public/contextual_task_unittest.cc components/contextual_tasks/public/features.cc components/contextual_tasks/public/features_unittest.cc +components/contextual_tasks/public/query_contextualizer_unittest.cc components/continuous_search/browser/search_result_extractor_client_unittest.cc components/country_codes/country_codes.cc components/crash/core/app/crash_export_thunks.h @@ -3307,6 +3308,7 @@ components/optimization_guide/optimization_guide_internals/resources/optimizatio components/optimization_guide/tools/gen_on_device_proto_descriptors.py components/origin_trials/browser/leveldb_persistence_provider_unittest.cc components/os_crypt/sync/libsecret_util_linux.cc +components/page_content_annotations/core/category_classifier_model_handler_unittest.cc components/page_content_annotations/core/on_device_category_classifier_unittest.cc components/page_content_annotations/core/page_content_annotations_service_unittest.cc components/page_image_service/image_service_impl_unittest.cc -- GitLab From 2b253bf206f6ba9b1a0b153686a97dddd04290e8 Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Fri, 24 Apr 2026 14:57:25 +0530 Subject: [PATCH 4/6] Add a patch to do a one time migration and enable native autofill by default Drop the patch which disabled native autofill --- ...e-Android-native-autofill-by-default.patch | 26 ---------- ...ers-who-had-native-autofill-disabled.patch | 49 +++++++++++++++++++ build/e_patches_list.txt | 2 +- 3 files changed, 50 insertions(+), 27 deletions(-) delete mode 100644 build/e_patches/Browser-Disable-Android-native-autofill-by-default.patch create mode 100644 build/e_patches/Migrate-users-who-had-native-autofill-disabled.patch diff --git a/build/e_patches/Browser-Disable-Android-native-autofill-by-default.patch b/build/e_patches/Browser-Disable-Android-native-autofill-by-default.patch deleted file mode 100644 index 5fde727f..00000000 --- a/build/e_patches/Browser-Disable-Android-native-autofill-by-default.patch +++ /dev/null @@ -1,26 +0,0 @@ -From f8bf29e61ad3cfe2e1561d8c55313443ee1ee1ef Mon Sep 17 00:00:00 2001 -From: althafvly -Date: Tue, 22 Aug 2023 06:16:40 +0000 -Subject: Browser: Disable Android native autofill by default - -Signed-off-by: Saalim Quadri ---- - components/autofill/core/common/autofill_prefs.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/components/autofill/core/common/autofill_prefs.cc b/components/autofill/core/common/autofill_prefs.cc -index 210c7118c0eaf..7d525d637f400 100644 ---- a/components/autofill/core/common/autofill_prefs.cc -+++ b/components/autofill/core/common/autofill_prefs.cc -@@ -89,7 +89,7 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { - registry->RegisterBooleanPref(kAutofillCreditCardFidoAuthOfferCheckboxState, - true); - #endif -- registry->RegisterBooleanPref(prefs::kAutofillAndroidEnabled, true); -+ registry->RegisterBooleanPref(prefs::kAutofillAndroidEnabled, false); - registry->RegisterBooleanPref(prefs::kAutofillAndroidIncognitoEnabled, false); - registry->RegisterIntegerPref(kAutocompleteLastVersionRetentionPolicy, 0); - registry->RegisterStringPref(kAutofillUploadEncodingSeed, ""); --- -2.53.0 - diff --git a/build/e_patches/Migrate-users-who-had-native-autofill-disabled.patch b/build/e_patches/Migrate-users-who-had-native-autofill-disabled.patch new file mode 100644 index 00000000..87173344 --- /dev/null +++ b/build/e_patches/Migrate-users-who-had-native-autofill-disabled.patch @@ -0,0 +1,49 @@ +From 5265fd69f9f1c73db4d20a07812b33733bcaec16 Mon Sep 17 00:00:00 2001 +From: Nishith Khanna +Date: Fri, 24 Apr 2026 14:50:55 +0530 +Subject: Migrate users who had native autofill disabled + +--- + components/autofill/core/common/autofill_prefs.cc | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + +diff --git a/components/autofill/core/common/autofill_prefs.cc b/components/autofill/core/common/autofill_prefs.cc +index 210c7118c0eaf..43bcecc079815 100644 +--- a/components/autofill/core/common/autofill_prefs.cc ++++ b/components/autofill/core/common/autofill_prefs.cc +@@ -26,6 +26,9 @@ namespace { + #if BUILDFLAG(IS_ANDROID) + inline constexpr char kFacilitatedPaymentsPixAccountLinkingDeprecated[] = + "facilitated_payments.pix_account_linking"; ++ ++inline constexpr char kAutofillAndroidEnabledMigrationDone[] = ++ "autofill.android_autofill_enabled_migration_done"; + #endif + constexpr char kAutofillRanExtraDeduplication[] = + "autofill.ran_extra_deduplication"; +@@ -172,6 +175,7 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { + #if BUILDFLAG(IS_ANDROID) + registry->RegisterBooleanPref(kFacilitatedPaymentsPixAccountLinkingDeprecated, + /*default_value=*/true); ++ registry->RegisterBooleanPref(kAutofillAndroidEnabledMigrationDone, false); + #endif // BUILDFLAG(IS_ANDROID) + registry->RegisterBooleanPref(kAutofillRanExtraDeduplication, false); + // Don't add new prefs here. Add them before any deprecated prefs instead. +@@ -183,6 +187,14 @@ void MigrateDeprecatedAutofillPrefs(PrefService* pref_service) { + #if BUILDFLAG(IS_ANDROID) + // Added 08/2025 + pref_service->ClearPref(kFacilitatedPaymentsPixAccountLinkingDeprecated); ++ // Added 04/2026 - Re-enable autofill for users affected by the temporary ++ // default=false patch. Runs once; respects subsequent user changes. ++ if (!pref_service->GetBoolean(kAutofillAndroidEnabledMigrationDone)) { ++ if (!pref_service->GetBoolean(prefs::kAutofillAndroidEnabled)) { ++ pref_service->SetBoolean(prefs::kAutofillAndroidEnabled, true); ++ } ++ pref_service->SetBoolean(kAutofillAndroidEnabledMigrationDone, true); ++ } + #endif // BUILDFLAG(IS_ANDROID) + // Added 01/2026 + pref_service->ClearPref(kAutofillRanExtraDeduplication); +-- +2.53.0 + diff --git a/build/e_patches_list.txt b/build/e_patches_list.txt index 9c0a334b..af728cca 100644 --- a/build/e_patches_list.txt +++ b/build/e_patches_list.txt @@ -28,7 +28,6 @@ Handle-web-search-action-in-browser.patch Browser-Replace-default-tab-favicon.patch Browser-Spoof-as-Pixel-4a-by-default.patch Browser-Remove-broken-link-about-entries.patch -Browser-Disable-Android-native-autofill-by-default.patch Browser-Enable-unified-autoplay-by-default.patch Use-thirdparty-autofill-by-default.patch Remove-some-privacy-UI-pref.patch @@ -68,3 +67,4 @@ Browser-Add-support-for-eOS-webapk.patch Enable-zoom-option-in-main-menu-by-default.patch Enable-JIT-by-default.patch Enable-local-backup-support.patch +Migrate-users-who-had-native-autofill-disabled.patch -- GitLab From a80103c897592d068c96485e70f07e65568454c4 Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Fri, 24 Apr 2026 15:22:23 +0530 Subject: [PATCH 5/6] Update to new app icon --- build/e_patches/Update-app-icon.patch | 269 ++++++++++++++------------ 1 file changed, 141 insertions(+), 128 deletions(-) diff --git a/build/e_patches/Update-app-icon.patch b/build/e_patches/Update-app-icon.patch index 3b30c98e..c3e3901b 100644 --- a/build/e_patches/Update-app-icon.patch +++ b/build/e_patches/Update-app-icon.patch @@ -1,22 +1,25 @@ -From b42101042ae4c295d1726dd8a2a55f10bfe2cf90 Mon Sep 17 00:00:00 2001 +From ffd0874c8e7556d5cb2438ce1c127b6675bb415a Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Wed, 14 Feb 2024 15:09:43 +0530 Subject: Update app icon Signed-off-by: Saalim Quadri --- - .../drawable/ic_launcher_background.xml | 89 +++++++++++--- - .../drawable/ic_launcher_foreground.xml | 113 ++++++++++++++++-- - 2 files changed, 175 insertions(+), 27 deletions(-) + .../drawable/ic_launcher_background.xml | 85 ++++++++--- + .../drawable/ic_launcher_foreground.xml | 132 +++++++++++++++--- + 2 files changed, 182 insertions(+), 35 deletions(-) diff --git a/chrome/android/java/res_chromium_base/drawable/ic_launcher_background.xml b/chrome/android/java/res_chromium_base/drawable/ic_launcher_background.xml -index fcefd38d32678..7852ae0318cd3 100644 +index fcefd38d32678..e85e4676cb3ce 100644 --- a/chrome/android/java/res_chromium_base/drawable/ic_launcher_background.xml +++ b/chrome/android/java/res_chromium_base/drawable/ic_launcher_background.xml -@@ -4,18 +4,79 @@ - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> +@@ -1,21 +1,70 @@ + - - @@ -31,17 +34,21 @@ index fcefd38d32678..7852ae0318cd3 100644 - - - ++ android:width="162dp" ++ android:height="162dp" ++ android:viewportWidth="162" ++ android:viewportHeight="162"> + + ++ android:pathData="M0,0h162v162h-162z"/> + ++ android:pathData="M0,0h162v162h-162z"> + -+ + + @@ -49,72 +56,63 @@ index fcefd38d32678..7852ae0318cd3 100644 + + + ++ android:pathData="M0,0h162v162h-162z"> + -+ -+ -+ ++ ++ + + + + -+ -+ -+ -+ -+ -+ -+ -+ ++ android:pathData="M0,0h162v162h-162z" ++ android:fillColor="#2D313E"/> + ++ android:pathData="M0,0.5h162v162h-162z"> + -+ -+ -+ ++ ++ + + + + ++ android:pathData="M0,0.5h162v162h-162z"> + -+ -+ -+ ++ ++ + + + + diff --git a/chrome/android/java/res_chromium_base/drawable/ic_launcher_foreground.xml b/chrome/android/java/res_chromium_base/drawable/ic_launcher_foreground.xml -index 49fbe9525bc1a..7330ae6b34976 100644 +index 49fbe9525bc1a..0a7e196274b8e 100644 --- a/chrome/android/java/res_chromium_base/drawable/ic_launcher_foreground.xml +++ b/chrome/android/java/res_chromium_base/drawable/ic_launcher_foreground.xml -@@ -4,17 +4,104 @@ - android:height="108dp" - android:viewportWidth="108" - android:viewportHeight="108"> +@@ -1,20 +1,118 @@ + - - - ++ android:width="162dp" ++ android:height="162dp" ++ android:viewportWidth="162" ++ android:viewportHeight="162"> + ++ android:pathData="M46.31,71.28C51.51,53.41 69.32,41.63 87.41,45.45C96.35,47.34 102.37,51.26 109.17,57.69C111.47,59.86 112.73,61.67 114.02,63.89C114.86,65.33 116.62,69.07 116.14,70.61C114.56,75.68 110.57,78.31 106.11,79.62C100.05,81.4 92.74,82.58 85.62,82.27C79.66,82.02 75.18,80.64 69.6,83.95L69.6,83.95C69.6,83.95 69.55,85.37 69.77,86.24C71.26,92.17 76.36,97.11 82.64,97.51C95.02,98.3 98.15,86.81 108.28,83.2C113.92,81.19 116.52,84.13 115.61,89.95C114.96,94.12 112.73,98.64 110.38,102.02C105.36,109.24 97.17,114.49 88.75,116.26C87.63,116.5 85.58,116.95 84.49,116.85C84.48,116.85 84.47,116.85 84.46,116.85L82.92,117.03C58.77,118.14 38.98,96.49 46.31,71.28Z"> + -+ -+ -+ ++ ++ + + + + -+ ++ android:pathData="M46.31,71.28C51.51,53.41 69.32,41.63 87.41,45.45C96.35,47.34 102.37,51.26 109.17,57.69C111.47,59.86 112.73,61.67 114.02,63.89C114.86,65.33 116.62,69.07 116.14,70.61C114.56,75.68 110.57,78.31 106.11,79.62C100.05,81.4 92.74,82.58 85.62,82.27C79.66,82.02 75.18,80.64 69.6,83.95L69.6,83.95C69.6,83.95 69.55,85.37 69.77,86.24C71.26,92.17 76.36,97.11 82.64,97.51C95.02,98.3 98.15,86.81 108.28,83.2C113.92,81.19 116.52,84.13 115.61,89.95C114.96,94.12 112.73,98.64 110.38,102.02C105.36,109.24 97.17,114.49 88.75,116.26C87.63,116.5 85.58,116.95 84.49,116.85C84.48,116.85 84.47,116.85 84.46,116.85L82.92,117.03C58.77,118.14 38.98,96.49 46.31,71.28Z"> + -+ -+ -+ -+ ++ ++ ++ + + + + -+ ++ android:pathData="M84.49,116.84L82.92,117.03C58.77,118.14 38.98,96.49 46.31,71.28C51.51,53.41 69.32,41.63 87.41,45.45C96.35,47.34 102.37,51.26 109.17,57.69C111.47,59.86 112.73,61.67 114.02,63.89C114.86,65.33 116.62,69.07 116.14,70.61C114.56,75.68 110.57,78.31 106.11,79.62C100.05,81.4 92.74,82.58 85.62,82.27C79.66,82.02 75.18,80.64 69.6,83.95C62.73,88.03 61.16,97.8 64.89,104.76C68.71,111.87 76.83,116.17 84.49,116.84Z"> + -+ -+ -+ -+ ++ ++ ++ + + + + -+ -+ ++ android:pathData="M84.49,116.84L82.92,117.03C58.77,118.14 38.98,96.49 46.31,71.28C51.51,53.41 69.32,41.63 87.41,45.45C97.9,47.66 108.53,54.48 114.02,63.89C114.86,65.33 116.62,69.07 116.14,70.61C114.56,75.68 110.57,78.31 106.11,79.62C100.05,81.4 92.74,82.58 85.62,82.27C79.66,82.02 75.18,80.64 69.6,83.95C62.73,88.03 61.16,97.8 64.89,104.76C68.71,111.87 76.83,116.17 84.49,116.84Z"> + -+ -+ -+ -+ ++ ++ ++ + + + + ++ android:pathData="M57.43,73.25C65.27,65.97 75.09,68.76 80.22,74.31C85.34,79.86 91.48,81.97 96.6,81.68C94.01,82.04 92.42,82.57 85.62,82.27C79.66,82.02 75.18,80.64 69.6,83.95C62.73,88.03 61.16,97.8 64.89,104.76C68.71,111.87 76.83,116.17 84.49,116.84L83.3,116.99C73.27,116.61 62.83,112.83 57.43,105.26C49.8,94.59 49.58,80.53 57.43,73.25Z"> ++ ++ ++ ++ ++ ++ ++ + ++ android:pathData="M69.6,83.95C69.6,83.95 69.55,85.37 69.77,86.24C71.26,92.17 76.36,97.11 82.64,97.51C95.03,98.3 98.15,86.81 108.28,83.2C113.92,81.19 116.52,84.13 115.61,89.95C114.96,94.12 112.73,98.64 110.38,102.02C105.36,109.24 97.17,114.49 88.75,116.26C87.63,116.5 85.58,116.95 84.49,116.85C76.82,116.18 68.71,111.87 64.89,104.76C61.16,97.8 62.73,88.02 69.6,83.95Z"> + -+ -+ -+ -+ ++ ++ ++ + + + + ++ android:pathData="M100.83,68.43C102.4,68.43 103.66,67.08 103.66,65.41C103.66,63.75 102.4,62.4 100.83,62.4C99.27,62.4 98.01,63.75 98.01,65.41C98.01,67.08 99.27,68.43 100.83,68.43Z" ++ android:fillColor="#FFFAC8"/> ++ ++ + -+ -+ -+ -+ ++ ++ ++ + + + ++ -- -2.34.1 +2.53.0 -- GitLab From 0ac52b07625c453a48ef48d34b1a13b50d465a47 Mon Sep 17 00:00:00 2001 From: Nishith Khanna Date: Tue, 21 Apr 2026 12:13:40 +0000 Subject: [PATCH 6/6] [Auto] Update e patches --- build/e_patches/Disable-AGSA-by-default.patch | 14 ++++++------- .../Enable-local-backup-support.patch | 20 +++++++++---------- .../Multiple-fingerprinting-mitigations.patch | 8 ++++---- .../e_patches/Update-i18n-zhCN-support.patch | 8 ++++---- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/build/e_patches/Disable-AGSA-by-default.patch b/build/e_patches/Disable-AGSA-by-default.patch index 4ae854a0..4f69b6c7 100644 --- a/build/e_patches/Disable-AGSA-by-default.patch +++ b/build/e_patches/Disable-AGSA-by-default.patch @@ -1,4 +1,4 @@ -From 891f57c45c5793cce009890c4e6e744ca05ccd06 Mon Sep 17 00:00:00 2001 +From 4f2f84ca064c06e922a108c322fa9ac96d9da3ef Mon Sep 17 00:00:00 2001 From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Sun, 26 Sep 2021 11:17:53 +0200 Subject: Disable AGSA by default @@ -29,7 +29,7 @@ index e12f25685d880..959599aba2e62 100644 "//chrome/browser/history_clusters:java", "//chrome/browser/hub:factory_java", diff --git a/chrome/android/java/src/org/chromium/chrome/browser/IntentHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/IntentHandler.java -index de2748857a34a..31210ed6096cd 100644 +index 323b167af7de7..df24a09be8664 100644 --- a/chrome/android/java/src/org/chromium/chrome/browser/IntentHandler.java +++ b/chrome/android/java/src/org/chromium/chrome/browser/IntentHandler.java @@ -51,7 +51,6 @@ import org.chromium.chrome.browser.document.ChromeLauncherActivity; @@ -189,10 +189,10 @@ index fdc425a2ff1b0..a405c667be8dc 100644 public static boolean isGoogleLensFeatureEnabled(boolean isIncognito) { diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ui/RootUiCoordinator.java b/chrome/android/java/src/org/chromium/chrome/browser/ui/RootUiCoordinator.java -index aa17e890fdd55..afe1739fa4af0 100644 +index 445c9db57d5ef..a8532998a4d6d 100644 --- a/chrome/android/java/src/org/chromium/chrome/browser/ui/RootUiCoordinator.java +++ b/chrome/android/java/src/org/chromium/chrome/browser/ui/RootUiCoordinator.java -@@ -1187,22 +1187,6 @@ public class RootUiCoordinator +@@ -1182,22 +1182,6 @@ public class RootUiCoordinator mLayoutStateProviderOneShotSupplier, mFullscreenManager); mReadAloudControllerSupplier.set(controller); @@ -216,11 +216,11 @@ index aa17e890fdd55..afe1739fa4af0 100644 mReaderModeBottomSheetManager = new ReaderModeBottomSheetManager( diff --git a/chrome/browser/flags/android/chrome_feature_list.cc b/chrome/browser/flags/android/chrome_feature_list.cc -index adb92ea3b6298..4a23025a256f0 100644 +index 2041a0c81c2f8..ce019d637b757 100644 --- a/chrome/browser/flags/android/chrome_feature_list.cc +++ b/chrome/browser/flags/android/chrome_feature_list.cc -@@ -696,7 +696,7 @@ BASE_FEATURE(kEnableSwipeToSwitchPane, base::FEATURE_DISABLED_BY_DEFAULT); - BASE_FEATURE(kEnableToolbarPositioningInResizeMode, base::FEATURE_ENABLED_BY_DEFAULT); +@@ -698,7 +698,7 @@ BASE_FEATURE(kEnableToolbarPositioningInResizeMode, base::FEATURE_ENABLED_BY_DEF + BASE_FEATURE(kEnableToolbarSwipeOnNonDesktopLff, base::FEATURE_ENABLED_BY_DEFAULT); BASE_FEATURE(kEnableXAxisActivityTransition, base::FEATURE_DISABLED_BY_DEFAULT); BASE_FEATURE(kEscCancelDrag, base::FEATURE_DISABLED_BY_DEFAULT); -BASE_FEATURE(kExperimentsForAgsa, base::FEATURE_ENABLED_BY_DEFAULT); diff --git a/build/e_patches/Enable-local-backup-support.patch b/build/e_patches/Enable-local-backup-support.patch index 7d8210cd..82ef8a5a 100644 --- a/build/e_patches/Enable-local-backup-support.patch +++ b/build/e_patches/Enable-local-backup-support.patch @@ -1,4 +1,4 @@ -From 2075ee8948cf6e53e9beff8a8c505a30051fd8f9 Mon Sep 17 00:00:00 2001 +From b300a1c3650e00646b5587f976a9054f4f9a3580 Mon Sep 17 00:00:00 2001 From: althafvly Date: Fri, 10 Apr 2026 10:35:54 +0530 Subject: Enable local backup support @@ -11,10 +11,10 @@ Subject: Enable local backup support create mode 100644 chrome/android/java/res_template/xml/chromebackupscheme.xml diff --git a/chrome/android/BUILD.gn b/chrome/android/BUILD.gn -index 0c9682392de8..0c7f17b169a1 100644 +index 959599aba2e62..e449502ac1cb3 100644 --- a/chrome/android/BUILD.gn +++ b/chrome/android/BUILD.gn -@@ -1712,6 +1712,7 @@ if (_is_default_toolchain) { +@@ -1773,6 +1773,7 @@ if (_is_default_toolchain) { jinja_template_resources("chrome_public_apk_template_resources") { resources = [ @@ -22,7 +22,7 @@ index 0c9682392de8..0c7f17b169a1 100644 "java/res_template/xml/file_paths.xml", "java/res_template/xml/launchershortcuts.xml", "java/res_template/xml/searchable.xml", -@@ -1723,6 +1724,7 @@ if (_is_default_toolchain) { +@@ -1784,6 +1785,7 @@ if (_is_default_toolchain) { jinja_template_resources("chrome_test_apk_template_resources") { resource_overlay = true resources = [ @@ -31,10 +31,10 @@ index 0c9682392de8..0c7f17b169a1 100644 "java/res_template/xml/launchershortcuts.xml", "java/res_template/xml/searchable.xml", diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml -index d20a6a1aff7b..d315d62a410f 100644 +index 5224e4037ad5b..c832f2c07be33 100644 --- a/chrome/android/java/AndroidManifest.xml +++ b/chrome/android/java/AndroidManifest.xml -@@ -206,14 +206,12 @@ by a child template that "extends" this file. +@@ -212,14 +212,12 @@ by a child template that "extends" this file. android:manageSpaceActivity="@string/manage_space_activity" android:supportsRtl="true" android:zygotePreloadName="{{ zygote_preload_class }}" @@ -50,9 +50,9 @@ index d20a6a1aff7b..d315d62a410f 100644 - android:allowBackup="false" - {% endif %} android:networkSecurityConfig="@xml/network_security_config" - android:allowAudioPlaybackCapture="false" android:appComponentFactory="org.chromium.chrome.browser.base.SplitCompatAppComponentFactory" -@@ -1316,12 +1314,6 @@ by a child template that "extends" this file. + android:enableOnBackInvokedCallback="true" +@@ -1336,12 +1334,6 @@ by a child template that "extends" this file. @@ -67,7 +67,7 @@ index d20a6a1aff7b..d315d62a410f 100644 {% endif %} diff --git a/chrome/android/java/res_template/xml/chromebackupscheme.xml b/chrome/android/java/res_template/xml/chromebackupscheme.xml new file mode 100644 -index 000000000000..3ed5163a9ee5 +index 0000000000000..3ed5163a9ee57 --- /dev/null +++ b/chrome/android/java/res_template/xml/chromebackupscheme.xml @@ -0,0 +1,39 @@ @@ -111,5 +111,5 @@ index 000000000000..3ed5163a9ee5 + + -- -2.47.3 +2.53.0 diff --git a/build/e_patches/Multiple-fingerprinting-mitigations.patch b/build/e_patches/Multiple-fingerprinting-mitigations.patch index b9fab0c9..62884781 100644 --- a/build/e_patches/Multiple-fingerprinting-mitigations.patch +++ b/build/e_patches/Multiple-fingerprinting-mitigations.patch @@ -1,4 +1,4 @@ -From 11b376d6516c646dc11b2d617ee7ee55df1f7612 Mon Sep 17 00:00:00 2001 +From 0b8a7eb30bcd4a4937d1ccbd0ff173412cd142da Mon Sep 17 00:00:00 2001 From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Fri, 30 Mar 2018 10:09:03 +0200 Subject: Multiple fingerprinting mitigations @@ -66,7 +66,7 @@ index f7b58f64019c8..22d040f1ffe36 100644 "//services/device/public/mojom:usb", "//services/image_annotation:service", diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc -index f513c423bb1c2..84978de20c7d7 100644 +index 1a742f4d1b6ae..b94a070ac1701 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -269,6 +269,8 @@ @@ -700,10 +700,10 @@ index d2fb75194be3d..51d261407b950 100644 // Methods overridden by all sub-classes diff --git a/third_party/blink/renderer/platform/runtime_enabled_features.json5 b/third_party/blink/renderer/platform/runtime_enabled_features.json5 -index 282dd95195522..313bdb1a37431 100644 +index 186446e753f59..c7d7fcbf59f56 100644 --- a/third_party/blink/renderer/platform/runtime_enabled_features.json5 +++ b/third_party/blink/renderer/platform/runtime_enabled_features.json5 -@@ -3883,6 +3883,12 @@ +@@ -3875,6 +3875,12 @@ status: {"Mac": "test", "default": "stable"}, base_feature: "none", }, diff --git a/build/e_patches/Update-i18n-zhCN-support.patch b/build/e_patches/Update-i18n-zhCN-support.patch index 32d28c2b..5838400b 100644 --- a/build/e_patches/Update-i18n-zhCN-support.patch +++ b/build/e_patches/Update-i18n-zhCN-support.patch @@ -1,4 +1,4 @@ -From 910483fb16989f607cb19375d4cf9de70f59ad84 Mon Sep 17 00:00:00 2001 +From 968ea98813c7f5fbb17f57c185daeb2d255b791c Mon Sep 17 00:00:00 2001 From: mars Date: Sun, 2 Aug 2020 00:37:49 +0800 Subject: Update i18n zh_CN support @@ -15,7 +15,7 @@ Signed-off-by: Saalim Quadri 6 files changed, 131 insertions(+), 6 deletions(-) diff --git a/chrome/app/resources/generated_resources_zh-CN.xtb b/chrome/app/resources/generated_resources_zh-CN.xtb -index 7bba850425d28..63ce2d86b5fa6 100644 +index fe960d4117361..18464782428d6 100644 --- a/chrome/app/resources/generated_resources_zh-CN.xtb +++ b/chrome/app/resources/generated_resources_zh-CN.xtb @@ -12260,4 +12260,6 @@ @@ -40,7 +40,7 @@ index db34dbea19ad3..09510b80419f6 100644 +关于 Bromite + diff --git a/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb b/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb -index 6a3b4500eb671..58b9b86bf6b8c 100644 +index 1d111cd0dd8f0..057074af2e1c1 100644 --- a/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb +++ b/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb @@ -2072,4 +2072,72 @@ @@ -154,7 +154,7 @@ index 26bda16618e45..41757e2e0a5a5 100644 +WebRTC + diff --git a/components/strings/components_strings_zh-CN.xtb b/components/strings/components_strings_zh-CN.xtb -index 8de23c5c6c0d9..ecfc301e55e7f 100644 +index ecb62c65f9be6..707beffdd8326 100644 --- a/components/strings/components_strings_zh-CN.xtb +++ b/components/strings/components_strings_zh-CN.xtb @@ -5263,4 +5263,33 @@ -- GitLab