diff options
Diffstat (limited to 'java-overridable/src/com/android/inputmethod/latin/utils')
-rw-r--r-- | java-overridable/src/com/android/inputmethod/latin/utils/StatsUtils.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/java-overridable/src/com/android/inputmethod/latin/utils/StatsUtils.java b/java-overridable/src/com/android/inputmethod/latin/utils/StatsUtils.java index c867fee33..38735eccb 100644 --- a/java-overridable/src/com/android/inputmethod/latin/utils/StatsUtils.java +++ b/java-overridable/src/com/android/inputmethod/latin/utils/StatsUtils.java @@ -22,12 +22,45 @@ import com.android.inputmethod.latin.settings.SettingsValues; public final class StatsUtils { + private StatsUtils() { + // Intentional empty constructor. + } + public static void onCreate(final SettingsValues settingsValues, RichInputMethodManager richImm) { } public static void onPickSuggestionManually(final SuggestedWords suggestedWords, final SuggestedWords.SuggestedWordInfo suggestionInfo) { + } + + public static void onBackspaceWordDelete(int wordLength) { + } + + public static void onBackspacePressed(int lengthToDelete) { + } + + public static void onBackspaceSelectedText(int selectedTextLength) { + } + + public static void onDeleteMultiCharInput(int multiCharLength) { + } + + public static void onRevertAutoCorrect() { + } + + public static void onRevertDoubleSpacePeriod() { + } + + public static void onRevertSwapPunctuation() { + } + + public static void onFinishInputView() { + } + + public static void onCreateInputView() { + } + public static void onStartInputView(int inputType, int displayOrientation, boolean restarting) { } } |