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

Commit e2513c02 authored by Cosmin Băieș's avatar Cosmin Băieș Committed by Automerger Merge Worker
Browse files

Merge "PHASE_IME_APPLY_VISIBILITY_INSETS_CONSUMER timeout" into udc-qpr-dev...

Merge "PHASE_IME_APPLY_VISIBILITY_INSETS_CONSUMER timeout" into udc-qpr-dev am: 80fafb7d am: 1a3c5d96

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



Change-Id: Id701c9772b3cae543b507c123e9297045d637f32
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 330395f5 1a3c5d96
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2986,8 +2986,6 @@ public class InputMethodService extends AbstractInputMethodService {
        ImeTracing.getInstance().triggerServiceDump(
                "InputMethodService#applyVisibilityInInsetsConsumerIfNecessary", mDumper,
                null /* icProto */);
        ImeTracker.forLogging().onProgress(mCurStatsToken,
                ImeTracker.PHASE_IME_APPLY_VISIBILITY_INSETS_CONSUMER);
        mPrivOps.applyImeVisibilityAsync(setVisible
                ? mCurShowInputToken : mCurHideInputToken, setVisible, mCurStatsToken);
    }
+4 −0
Original line number Diff line number Diff line
@@ -386,8 +386,12 @@ public final class InputMethodPrivilegedOperations {
            @Nullable ImeTracker.Token statsToken) {
        final IInputMethodPrivilegedOperations ops = mOps.getAndWarnIfNull();
        if (ops == null) {
            ImeTracker.forLogging().onFailed(statsToken,
                    ImeTracker.PHASE_IME_APPLY_VISIBILITY_INSETS_CONSUMER);
            return;
        }
        ImeTracker.forLogging().onProgress(statsToken,
                ImeTracker.PHASE_IME_APPLY_VISIBILITY_INSETS_CONSUMER);
        try {
            ops.applyImeVisibilityAsync(showOrHideInputToken, setVisible, statsToken);
        } catch (RemoteException e) {