am 9579936b: [Rlog67] Renaming clarification

* commit '9579936bcf6bc5cecee315c5e40a30af77f47dfd':
  [Rlog67] Renaming clarification
main
Kurt Partridge 2013-01-15 09:37:34 -08:00 committed by Android Git Automerger
commit 87627df898
2 changed files with 11 additions and 7 deletions

View File

@ -1870,7 +1870,7 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
private boolean handleSeparator(final int primaryCode, final int x, final int y, private boolean handleSeparator(final int primaryCode, final int x, final int y,
final int spaceState) { final int spaceState) {
if (ProductionFlag.IS_EXPERIMENTAL) { if (ProductionFlag.IS_EXPERIMENTAL) {
ResearchLogger.latinIME_handleSeparator(); ResearchLogger.recordTimeForLogUnitSplit();
} }
boolean didAutoCorrect = false; boolean didAutoCorrect = false;
// Handle separator // Handle separator

View File

@ -1705,12 +1705,16 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
researchLogger.enqueueEvent(LOGSTATEMENT_ONUSERPAUSE, interval); researchLogger.enqueueEvent(LOGSTATEMENT_ONUSERPAUSE, interval);
} }
public static void latinIME_handleSeparator() { /**
// Reset the saved down event time. For tapping, motion events, etc. before the separator * Record the current time in case the LogUnit is later split.
// are assigned to the previous LogUnit, and events after the separator are assigned to the *
// next LogUnit. In the case of multitap, this might capture down events corresponding to * If the current logUnitis split, then tapping, motion events, etc. before this time should
// the next word, however it should not be more than a character or two. * be assigned to one LogUnit, and events after this time should go into the following LogUnit.
getInstance().setSavedDownEventTime(SystemClock.uptimeMillis()); */
public static void recordTimeForLogUnitSplit() {
final ResearchLogger researchLogger = getInstance();
researchLogger.setSavedDownEventTime(SystemClock.uptimeMillis());
researchLogger.mSavedDownEventTime = Long.MAX_VALUE;
} }
/** /**