Loading core/java/android/inputmethodservice/InputMethodService.java +0 −2 Original line number Diff line number Diff line Loading @@ -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); } Loading core/java/com/android/internal/inputmethod/InputMethodPrivilegedOperations.java +4 −0 Original line number Diff line number Diff line Loading @@ -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) { Loading Loading
core/java/android/inputmethodservice/InputMethodService.java +0 −2 Original line number Diff line number Diff line Loading @@ -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); } Loading
core/java/com/android/internal/inputmethod/InputMethodPrivilegedOperations.java +4 −0 Original line number Diff line number Diff line Loading @@ -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) { Loading