aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/Statistics.java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2012-08-22 10:41:10 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-22 10:41:10 -0700
commitd573bad5bdd83236efee9cac76898ed138fbe53c (patch)
tree35d6e2fabfa7ffe618163b226729e739b3854152 /java/src/com/android/inputmethod/research/Statistics.java
parent50e7501722427aabdd280201e5e1bbfaeac76fab (diff)
parentbf653996eab40e2c66cfd2eaeb48ed5175b78455 (diff)
downloadlatinime-d573bad5bdd83236efee9cac76898ed138fbe53c.tar.gz
latinime-d573bad5bdd83236efee9cac76898ed138fbe53c.tar.xz
latinime-d573bad5bdd83236efee9cac76898ed138fbe53c.zip
Merge "ResearchLogging capture full n-gram data" into jb-mr1-dev
Diffstat (limited to 'java/src/com/android/inputmethod/research/Statistics.java')
-rw-r--r--java/src/com/android/inputmethod/research/Statistics.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/research/Statistics.java b/java/src/com/android/inputmethod/research/Statistics.java
index 4a2cd079c..eab465aa2 100644
--- a/java/src/com/android/inputmethod/research/Statistics.java
+++ b/java/src/com/android/inputmethod/research/Statistics.java
@@ -66,8 +66,8 @@ public class Statistics {
// To account for the interruptions when the user's attention is directed elsewhere, times
// longer than MIN_TYPING_INTERMISSION are not counted when estimating this statistic.
- public static final int MIN_TYPING_INTERMISSION = 5 * 1000; // in milliseconds
- public static final int MIN_DELETION_INTERMISSION = 15 * 1000; // in milliseconds
+ public static final int MIN_TYPING_INTERMISSION = 2 * 1000; // in milliseconds
+ public static final int MIN_DELETION_INTERMISSION = 10 * 1000; // in milliseconds
// The last time that a tap was performed
private long mLastTapTime;