diff options
| author | 2023-03-03 15:01:51 +0000 | |
|---|---|---|
| committer | 2023-03-03 15:01:51 +0000 | |
| commit | 40078ee5d1d88eb2aa036ec1575256134a2fd83a (patch) | |
| tree | 08b11a3de469c223beb7ed9579952fed37be409f | |
| parent | 50fdc9701c5ca24f18771bc66144f1d5269ea835 (diff) | |
| parent | 5df3de90a42a6eaba0488b32fb041900b94e3ed5 (diff) | |
Merge "Add missing traceEnd in IMMS#showSoftInput for the invalid call" into udc-dev
| -rw-r--r-- | services/core/java/com/android/server/inputmethod/InputMethodManagerService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java index 32f4272ec997..91f91f86d275 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java @@ -3325,6 +3325,7 @@ public final class InputMethodManagerService extends IInputMethodManager.Stub if (!canInteractWithImeLocked(uid, client, "showSoftInput", statsToken)) { ImeTracker.forLogging().onFailed( statsToken, ImeTracker.PHASE_SERVER_CLIENT_FOCUSED); + Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER); return false; } final long ident = Binder.clearCallingIdentity(); |