Merge "Add DynamicShortcutListPolicy::copyAllShortcuts()."
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 98767ad..6be9ded 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -131,7 +131,8 @@
 
     private static final int PERIOD_FOR_AUDIO_AND_HAPTIC_FEEDBACK_IN_KEY_REPEAT = 2;
 
-    private static final int GET_SUGGESTED_WORDS_TIMEOUT = 500;
+    // TODO: Set this value appropriately.
+    private static final int GET_SUGGESTED_WORDS_TIMEOUT = 200;
 
     /**
      * The name of the scheme used by the Package Manager to warn of a new package installation,
@@ -2396,6 +2397,7 @@
                 }
         );
 
+        // TODO: Quit blocking the main thread.
         try {
             // Wait for the result of getSuggestedWords
             // We set the time out to avoid ANR.