Remove usage of TRACE_TAG_ALWAYS from sysui

Bug: 269206446
Test: presubmits
Change-Id: I7bf352fa0527d52b08618fbe3437ae6dd63d6572
This commit is contained in:
Nicolo' Mazzucato
2023-02-16 12:25:20 +00:00
parent a3f6566acc
commit 08b88e1b0a
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@
package com.android.systemui.shade;
import static android.os.Trace.TRACE_TAG_ALWAYS;
import static android.os.Trace.TRACE_TAG_APP;
import static android.view.WindowInsets.Type.systemBars;
import static com.android.systemui.statusbar.phone.CentralSurfaces.DEBUG;
@@ -328,7 +328,7 @@ public class NotificationShadeWindowView extends FrameLayout {
@Override
public void requestLayout() {
Trace.instant(TRACE_TAG_ALWAYS, "NotificationShadeWindowView#requestLayout");
Trace.instant(TRACE_TAG_APP, "NotificationShadeWindowView#requestLayout");
super.requestLayout();
}

View File

@@ -16,7 +16,7 @@
package com.android.systemui.statusbar.notification.stack;
import static android.os.Trace.TRACE_TAG_ALWAYS;
import static android.os.Trace.TRACE_TAG_APP;
import static com.android.internal.jank.InteractionJankMonitor.CUJ_NOTIFICATION_SHADE_SCROLL_FLING;
import static com.android.internal.jank.InteractionJankMonitor.CUJ_SHADE_CLEAR_ALL;
@@ -1121,7 +1121,7 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable
@Override
public void requestLayout() {
Trace.instant(TRACE_TAG_ALWAYS, "NotificationStackScrollLayout#requestLayout");
Trace.instant(TRACE_TAG_APP, "NotificationStackScrollLayout#requestLayout");
super.requestLayout();
}