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

Commit f2ef0479 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Revert "Annotate state changes on traces"" into sc-v2-dev am: fb12892a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16149484

Change-Id: I501103e87d769ba89b3507ba53c27312b5639284
parents 5a0b7578 fb12892a
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.os.SystemProperties;
import android.os.Trace;
import android.text.format.DateFormat;
import android.util.FloatProperty;
import android.util.Log;
@@ -182,7 +181,6 @@ public class StatusBarStateControllerImpl implements
        }

        synchronized (mListeners) {
            Trace.beginSection(TAG + "#setState(" + StatusBarState.toShortString(state) + ")");
            String tag = getClass().getSimpleName() + "#setState(" + state + ")";
            DejankUtils.startDetectingBlockingIpcs(tag);
            for (RankedListener rl : new ArrayList<>(mListeners)) {
@@ -200,7 +198,6 @@ public class StatusBarStateControllerImpl implements
                rl.mListener.onStatePostChange();
            }
            DejankUtils.stopDetectingBlockingIpcs(tag);
            Trace.endSection();
        }

        return true;
@@ -265,14 +262,12 @@ public class StatusBarStateControllerImpl implements
        mIsDozing = isDozing;

        synchronized (mListeners) {
            Trace.beginSection(TAG + "#setDozing(" + isDozing + ")");
            String tag = getClass().getSimpleName() + "#setIsDozing";
            DejankUtils.startDetectingBlockingIpcs(tag);
            for (RankedListener rl : new ArrayList<>(mListeners)) {
                rl.mListener.onDozingChanged(isDozing);
            }
            DejankUtils.stopDetectingBlockingIpcs(tag);
            Trace.endSection();
        }

        return true;
@@ -338,14 +333,12 @@ public class StatusBarStateControllerImpl implements
        mDozeAmount = dozeAmount;
        float interpolatedAmount = mDozeInterpolator.getInterpolation(dozeAmount);
        synchronized (mListeners) {
            Trace.beginSection(TAG + "#setDozeAmount");
            String tag = getClass().getSimpleName() + "#setDozeAmount";
            DejankUtils.startDetectingBlockingIpcs(tag);
            for (RankedListener rl : new ArrayList<>(mListeners)) {
                rl.mListener.onDozeAmountChanged(mDozeAmount, interpolatedAmount);
            }
            DejankUtils.stopDetectingBlockingIpcs(tag);
            Trace.endSection();
        }
    }

@@ -476,13 +469,11 @@ public class StatusBarStateControllerImpl implements
    public void setPulsing(boolean pulsing) {
        if (mPulsing != pulsing) {
            mPulsing = pulsing;
            Trace.beginSection(TAG + "#setPulsing(" + pulsing + ")");
            synchronized (mListeners) {
                for (RankedListener rl : new ArrayList<>(mListeners)) {
                    rl.mListener.onPulsingChanged(pulsing);
                }
            }
            Trace.endSection();
        }
    }