summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2015-06-03 23:56:12 -0700
committerYohei Yukawa <yukawa@google.com>2015-06-04 00:13:50 -0700
commitd724886cc13990ebcf55134455ef0fa223054ae8 (patch)
tree458ea6889298c5319681b4864a9b951d5384a5ee /services
parent90bf7084bf4f681383bf3329b0935de55330e782 (diff)
downloadframeworks_base-d724886cc13990ebcf55134455ef0fa223054ae8.zip
frameworks_base-d724886cc13990ebcf55134455ef0fa223054ae8.tar.gz
frameworks_base-d724886cc13990ebcf55134455ef0fa223054ae8.tar.bz2
Include InputMethodSubtypeSwitchingController in state dump.
In order to diagnose IME issues in multi-user / multi-profile environment, internal state of InputMethodSubtypeSwitchingController needs to be included in the bugreport. Bug: 19340792 Bug: 19587437 Bug: 21612582 Change-Id: I34aca2c1a4330ec08b5e40441e631809a8bb844e
Diffstat (limited to 'services')
-rw-r--r--services/core/java/com/android/server/InputMethodManagerService.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/InputMethodManagerService.java b/services/core/java/com/android/server/InputMethodManagerService.java
index e099297..0513d8b 100644
--- a/services/core/java/com/android/server/InputMethodManagerService.java
+++ b/services/core/java/com/android/server/InputMethodManagerService.java
@@ -3713,6 +3713,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
p.println(" mCurUserActionNotificationSequenceNumber="
+ mCurUserActionNotificationSequenceNumber);
p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mScreenOn);
+ p.println(" mSwitchingController:");
+ mSwitchingController.dump(p);
}
p.println(" ");