[AUTO][FILECONTROL] - version 145.0.7632.46

This commit is contained in:
uazo
2026-02-07 04:05:55 +00:00
committed by github-actions[bot]
parent 2ba2115028
commit 26bac9f92d
174 changed files with 4347 additions and 5104 deletions
@@ -229,6 +229,9 @@ by a child template that "extends" this file.
android:allowAudioPlaybackCapture="false"
android:appComponentFactory="org.chromium.chrome.browser.base.SplitCompatAppComponentFactory"
android:enableOnBackInvokedCallback="true"
{% if javaless_renderers is defined %}
android:zygotePreloadNativeLib="lib{{ library_name }}.so"
{% endif %}
{% block extra_application_attributes %}{% endblock %}>
{% if channel in ['canary', 'dev', 'default'] %}
@@ -292,6 +295,13 @@ by a child template that "extends" this file.
<data android:mimeType="text/plain"/>
<data android:mimeType="application/xhtml+xml"/>
</intent-filter>
<!-- PDF viewing support. -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/pdf" />
<data android:scheme="content" />
</intent-filter>
<!-- MHTML support, used for snapshots -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -544,6 +554,9 @@ by a child template that "extends" this file.
android:theme="@style/Theme.Chromium.TabbedMode"
android:exported="true"
android:launchMode="singleTask"
{% if is_desktop_android == "true" %}
android:persistableMode="persistAcrossReboots"
{% endif %}
{# We can only use blocks once in Jinja, for future substitutions we use
self.supports_video_persistence(). #}
{% block supports_video_persistence %}
@@ -1158,9 +1171,6 @@ by a child template that "extends" this file.
<receiver android:name="org.chromium.chrome.browser.offlinepages.AutoFetchNotifier$InProgressCancelReceiver"
android:exported="false"/>
<receiver android:name="org.chromium.chrome.browser.safety_hub.UnsubscribedNotificationsNotificationManager$NotificationReceiver"
android:exported="false"/>
<service android:name="org.chromium.chrome.browser.media.MediaCaptureNotificationService"
{% if is_desktop_android == "true" and enable_screen_capture == "true" %}
android:foregroundServiceType="camera|microphone|mediaProjection|mediaPlayback"
@@ -1296,21 +1306,22 @@ by a child template that "extends" this file.
{% if javaless_renderers is defined %}
<!-- Restricting to just 2 native-only services, one for zygote and one for non-zygote. -->
{% for i in range(2) %}
<!-- For now, the name of a native-only service must be prefixed with "NativeService". This is
only for the prototype, and once it actually lands in the Android tree, there will be a
better mechanism than this. -->
<service android:name="org.chromium.content.app.NativeServiceSandboxedProcessService{{ i }}"
<service android:name="org.chromium.content.app.NativeOnlySandboxedProcessService{{ i }}"
android:nativeService="true"
android:process=":sandboxed_process{{ i }}"
android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
android:isolatedProcess="true"
android:useAppZygote="true"
android:exported="{{sandboxed_service_exported|default(false)}}"
{% if (sandboxed_service_exported|default(false)) == 'true' %}
android:externalService="true"
tools:ignore="ExportedService"
android:visibleToInstantApps="true"
{% endif %} >
<meta-data android:name="android.app.lib_name" android:value="{{ library_name }}"/>
<meta-data android:name="android.app.func_name" android:value="NativeChildProcessService_onCreate"/>
<property android:name="android.app.PROPERTY_NATIVE_SERVICE_LIBRARY_NAME"
android:value="lib{{ library_name }}.so" />
<property android:name="android.app.PROPERTY_NATIVE_SERVICE_FUNCTION_NAME"
android:value="NativeChildProcessService_onCreate" />
</service>
{% endfor %}
{% endif %}