aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/gesture/incremental_decoder_wrapper.h
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2012-08-09 23:23:08 +0900
committerSatoshi Kataoka <satok@google.com>2012-08-10 12:34:00 +0900
commite9f3e182e4b3217282831fd8805958270b4dbba3 (patch)
tree051a09d04947bef2f4202dd2e435818b945fc8d2 /native/jni/src/gesture/incremental_decoder_wrapper.h
parent5bb420627520412a621121f5c21da123f6a4cb1c (diff)
downloadlatinime-e9f3e182e4b3217282831fd8805958270b4dbba3.tar.gz
latinime-e9f3e182e4b3217282831fd8805958270b4dbba3.tar.xz
latinime-e9f3e182e4b3217282831fd8805958270b4dbba3.zip
Add arguments for dic traverse session
Change-Id: I8776ad528eeea9a5fc4dcf394ca13bb80c04fb6d
Diffstat (limited to 'native/jni/src/gesture/incremental_decoder_wrapper.h')
-rw-r--r--native/jni/src/gesture/incremental_decoder_wrapper.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/native/jni/src/gesture/incremental_decoder_wrapper.h b/native/jni/src/gesture/incremental_decoder_wrapper.h
index 8d66b4ec1..2f9602853 100644
--- a/native/jni/src/gesture/incremental_decoder_wrapper.h
+++ b/native/jni/src/gesture/incremental_decoder_wrapper.h
@@ -63,13 +63,6 @@ class IncrementalDecoderWrapper : public IncrementalDecoderInterface {
mIncrementalDecoderInterface->setDict(dict, bigram, dictRoot, rootPos);
}
- void setPrevWord(const int32_t *prevWord, int prevWordLength) {
- if (!mIncrementalDecoderInterface) {
- return;
- }
- mIncrementalDecoderInterface->setPrevWord(prevWord, prevWordLength);
- }
-
static void setIncrementalDecoderFactoryMethod(
IncrementalDecoderInterface *(*factoryMethod)(int, int)) {
sIncrementalDecoderFactoryMethod = factoryMethod;