Use WordComposer.addKeyInfo for testing
Change-Id: I500654e7a26717aa5547942357e56060afb72969
This commit is contained in:
parent
da348e11ad
commit
5701a6647f
1 changed files with 3 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
package com.android.inputmethod.latin;
|
package com.android.inputmethod.latin;
|
||||||
|
|
||||||
|
import com.android.inputmethod.annotations.UsedForTesting;
|
||||||
import com.android.inputmethod.keyboard.Key;
|
import com.android.inputmethod.keyboard.Key;
|
||||||
import com.android.inputmethod.keyboard.Keyboard;
|
import com.android.inputmethod.keyboard.Keyboard;
|
||||||
|
|
||||||
|
@ -177,7 +178,8 @@ public final class WordComposer {
|
||||||
/**
|
/**
|
||||||
* Internal method to retrieve reasonable proximity info for a character.
|
* Internal method to retrieve reasonable proximity info for a character.
|
||||||
*/
|
*/
|
||||||
private void addKeyInfo(final int codePoint, final Keyboard keyboard) {
|
@UsedForTesting
|
||||||
|
public void addKeyInfo(final int codePoint, final Keyboard keyboard) {
|
||||||
final int x, y;
|
final int x, y;
|
||||||
final Key key;
|
final Key key;
|
||||||
if (keyboard != null && (key = keyboard.getKey(codePoint)) != null) {
|
if (keyboard != null && (key = keyboard.getKey(codePoint)) != null) {
|
||||||
|
|
Loading…
Reference in a new issue