diff options
author | 2012-07-23 15:28:28 +0900 | |
---|---|---|
committer | 2012-07-23 15:37:43 +0900 | |
commit | 4702671ea4feb0c79a879e2e3013afdd6ed800b1 (patch) | |
tree | a267b97a3760c684d52f1ed5ae0caa0eabe0939f /java/src/com/android/inputmethod/research/ResearchLogger.java | |
parent | c8e45ddb032554f4e9d4411d8ef47d98db62d77b (diff) | |
download | latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.tar.gz latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.tar.xz latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.zip |
Rename SuggestionsView to SuggestionStripView
Diffstat (limited to '')
-rw-r--r-- | java/src/com/android/inputmethod/research/ResearchLogger.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/research/ResearchLogger.java b/java/src/com/android/inputmethod/research/ResearchLogger.java index d0523f66e..68bd98a23 100644 --- a/java/src/com/android/inputmethod/research/ResearchLogger.java +++ b/java/src/com/android/inputmethod/research/ResearchLogger.java @@ -1258,16 +1258,16 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang } } - private static final String[] EVENTKEYS_SUGGESTIONSVIEW_SETSUGGESTIONS = { - "SuggestionsViewSetSuggestions", "suggestedWords" + private static final String[] EVENTKEYS_SUGGESTIONSTRIPVIEW_SETSUGGESTIONS = { + "SuggestionStripViewSetSuggestions", "suggestedWords" }; - public static void suggestionsView_setSuggestions(final SuggestedWords suggestedWords) { + public static void suggestionStripView_setSuggestions(final SuggestedWords suggestedWords) { if (suggestedWords != null) { final Object[] values = { suggestedWords }; - getInstance().enqueuePotentiallyPrivateEvent(EVENTKEYS_SUGGESTIONSVIEW_SETSUGGESTIONS, - values); + getInstance().enqueuePotentiallyPrivateEvent( + EVENTKEYS_SUGGESTIONSTRIPVIEW_SETSUGGESTIONS, values); } } |