Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1e2771b authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11186783 from 1d065751 to 24Q1-release

Change-Id: I6af424aac17b19b3e329006dd986b1c6065f4969
parents d216584d 1d065751
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -309,7 +309,6 @@
             android:exported="true">
            <intent-filter>
                <action android:name="android.bluetooth.IBluetoothMap"/>
                <action android:name="android.btmap.intent.action.SHOW_MAPS_SETTINGS"/>
                <action android:name="com.android.bluetooth.map.USER_CONFIRM_TIMEOUT"/>
            </intent-filter>
        </service>
+1 −2
Original line number Diff line number Diff line
@@ -133,10 +133,9 @@ public class A2dpService extends ProfileService {

    @VisibleForTesting
    A2dpService(Context ctx, A2dpNativeInterface nativeInterface, FeatureFlags featureFlags) {
        attachBaseContext(ctx);
        super(ctx);
        mNativeInterface = requireNonNull(nativeInterface);
        mFeatureFlags = featureFlags;
        onCreate();
    }

    public static boolean isEnabled() {
+1 −2
Original line number Diff line number Diff line
@@ -81,10 +81,9 @@ public class A2dpSinkService extends ProfileService {

    @VisibleForTesting
    A2dpSinkService(Context ctx, A2dpSinkNativeInterface nativeInterface, Looper looper) {
        attachBaseContext(ctx);
        super(ctx);
        mNativeInterface = requireNonNull(nativeInterface);
        mLooper = looper;
        onCreate();
    }

    public static boolean isEnabled() {
+7 −0
Original line number Diff line number Diff line
@@ -104,6 +104,13 @@ public class AvrcpTargetService extends ProfileService {

    private static AvrcpTargetService sInstance = null;

    AvrcpTargetService() {}

    @VisibleForTesting
    AvrcpTargetService(Context ctx) {
        super(ctx);
    }

    public static boolean isEnabled() {
        return BluetoothProperties.isProfileAvrcpTargetEnabled().orElse(false);
    }
+2 −3
Original line number Diff line number Diff line
@@ -139,10 +139,9 @@ public class AvrcpControllerService extends ProfileService {
    }

    @VisibleForTesting
    AvrcpControllerService(Context ctx, AvrcpControllerNativeInterface nativeInterface) {
        attachBaseContext(ctx);
    public AvrcpControllerService(Context ctx, AvrcpControllerNativeInterface nativeInterface) {
        super(ctx);
        mNativeInterface = requireNonNull(nativeInterface);
        onCreate();
    }

    public static boolean isEnabled() {
Loading