[AUTO][FILECONTROL] - version 137.0.7151.44

This commit is contained in:
uazo
2025-05-23 03:26:17 +00:00
committed by github-actions[bot]
parent 5a6f6870a4
commit 17899eb83b
183 changed files with 3772 additions and 2501 deletions
@@ -74,6 +74,10 @@ by a child template that "extends" this file.
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CAMERA" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MICROPHONE" />
{% endif %}
{% set enable_screen_capture = enable_screen_capture|default(0) %}
{% if enable_screen_capture == "true" %}
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
{% endif %}
<!-- TODO(crbug.com/40259231): Remove this tools:ignore attribute once it's no longer necessary. -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" tools:ignore="SystemPermissionTypo" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" tools:ignore="SystemPermissionTypo" />
@@ -527,7 +531,7 @@ by a child template that "extends" this file.
{% endblock %}
{% block chrome_activity_common %}
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize|uiMode|navigation|density"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize|uiMode|navigation|density|touchscreen|colorMode"
android:hardwareAccelerated="false"
{% endblock %}
>
@@ -1028,7 +1032,9 @@ by a child template that "extends" this file.
tools:ignore="ExportedService">
<intent-filter>
<action android:name="android.support.customtabs.action.CustomTabsService" />
<category android:name="androidx.browser.auth.category.AuthTab"/>
<category android:name="androidx.browser.customtabs.category.ColorSchemeCustomization"/>
<category android:name="androidx.browser.customtabs.category.EphemeralBrowsing"/>
<category android:name="androidx.browser.customtabs.category.NavBarColorCustomization"/>
<category android:name="androidx.browser.customtabs.category.SetNetwork"/>
<category android:name="androidx.browser.trusted.category.ImmersiveMode"/>
@@ -1128,9 +1134,16 @@ 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" %}
{% if is_desktop_android == "true" and enable_screen_capture == "true" %}
android:foregroundServiceType="camera|microphone|mediaProjection|mediaPlayback"
{% elif is_desktop_android == "true" %}
android:foregroundServiceType="camera|microphone"
{% elif enable_screen_capture == "true" %}
android:foregroundServiceType="mediaProjection|mediaPlayback"
{% endif %}
android:exported="false"/>
<service android:name="org.chromium.chrome.browser.media.ui.ChromeMediaNotificationControllerServices$PlaybackListenerService"
@@ -1158,6 +1171,9 @@ by a child template that "extends" this file.
<service android:name="org.chromium.chrome.browser.app.bluetooth.BluetoothNotificationService"
android:exported="false"/>
<service android:name="org.chromium.chrome.browser.app.serial.SerialNotificationService"
android:exported="false"/>
<service android:name="org.chromium.chrome.browser.app.usb.UsbNotificationService"
android:exported="false"/>
@@ -1192,11 +1208,10 @@ by a child template that "extends" this file.
android:label="WebXR"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
tools:ignore="NonResizeableActivity,DiscouragedApi">
<property android:name="android.window.PROPERTY_ACTIVITY_STARTS_IN_IMMERSIVE_XR"
android:value="true" />
<property android:name="android.window.PROPERTY_XR_ACTIVITY_START_MODE"
android:value="XR_ACTIVITY_START_MODE_HOME_SPACE" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.XR" />
<category android:name="org.khronos.openxr.intent.category.IMMERSIVE_HMD" />
</intent-filter>
</activity>