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

Commit 83776629 authored by Zim's avatar Zim
Browse files

Disable Launcher AIDL_TAG tracing special case

Since we enable generate_traces by default for the system and
signature apps, we can remove this special case

Test: Manual
Bug: 161393989
Change-Id: Iff92c0a729a9b9b038fb6310c7509925c59547b6
Merged-In: Iff92c0a729a9b9b038fb6310c7509925c59547b6
parent 418e3d42
Loading
Loading
Loading
Loading
+0 −9
Original line number Original line Diff line number Diff line
@@ -16,11 +16,9 @@
package com.android.quickstep;
package com.android.quickstep;


import android.annotation.TargetApi;
import android.annotation.TargetApi;
import android.app.ActivityManager;
import android.content.Context;
import android.content.Context;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.Build;
import android.os.RemoteException;
import android.os.UserManager;
import android.os.UserManager;
import android.util.Log;
import android.util.Log;
import android.view.ThreadedRenderer;
import android.view.ThreadedRenderer;
@@ -62,12 +60,5 @@ public class QuickstepProcessInitializer extends MainProcessInitializer {
        // Elevate GPU priority for Quickstep and Remote animations.
        // Elevate GPU priority for Quickstep and Remote animations.
        ThreadedRenderer.setContextPriority(
        ThreadedRenderer.setContextPriority(
                ThreadedRenderer.EGL_CONTEXT_PRIORITY_HIGH_IMG);
                ThreadedRenderer.EGL_CONTEXT_PRIORITY_HIGH_IMG);

        // Enable binder tracing on system server for calls originating from Launcher
        try {
            ActivityManager.getService().enableBinderTracing();
        } catch (RemoteException e) {
            Log.e(TAG, "Unable to enable binder tracing", e);
        }
    }
    }
}
}