Tiny cleanups

Change-Id: Ie648a9da326cb194d96cb5f5a6966af0608367b4
main
Ken Wakasa 2012-12-21 01:01:04 +09:00
parent ffd08e3788
commit 30ab10a144
3 changed files with 14 additions and 14 deletions

View File

@ -38,9 +38,9 @@ class GestureSuggest : public SuggestInterface {
if (!mSuggestInterface) { if (!mSuggestInterface) {
return 0; return 0;
} }
return mSuggestInterface->getSuggestions(pInfo, traverseSession, inputXs, return mSuggestInterface->getSuggestions(pInfo, traverseSession, inputXs, inputYs, times,
inputYs, times, pointerIds, codes, inputSize, commitPoint, outWords, frequencies, pointerIds, codes, inputSize, commitPoint, outWords, frequencies, outputIndices,
outputIndices, outputTypes); outputTypes);
} }
static void setGestureSuggestFactoryMethod(SuggestInterface *(*factoryMethod)(int, int)) { static void setGestureSuggestFactoryMethod(SuggestInterface *(*factoryMethod)(int, int)) {
@ -50,11 +50,11 @@ class GestureSuggest : public SuggestInterface {
private: private:
DISALLOW_IMPLICIT_CONSTRUCTORS(GestureSuggest); DISALLOW_IMPLICIT_CONSTRUCTORS(GestureSuggest);
static SuggestInterface *getGestureSuggestInstance(int maxWordLength, int maxWords) { static SuggestInterface *getGestureSuggestInstance(int maxWordLength, int maxWords) {
if (sGestureSuggestFactoryMethod) { if (!sGestureSuggestFactoryMethod) {
return sGestureSuggestFactoryMethod(maxWordLength, maxWords);
}
return 0; return 0;
} }
return sGestureSuggestFactoryMethod(maxWordLength, maxWords);
}
static SuggestInterface *(*sGestureSuggestFactoryMethod)(int, int); static SuggestInterface *(*sGestureSuggestFactoryMethod)(int, int);
SuggestInterface *mSuggestInterface; SuggestInterface *mSuggestInterface;

View File

@ -38,9 +38,9 @@ class TypingSuggest : public SuggestInterface {
if (!mSuggestInterface) { if (!mSuggestInterface) {
return 0; return 0;
} }
return mSuggestInterface->getSuggestions(pInfo, traverseSession, inputXs, return mSuggestInterface->getSuggestions(pInfo, traverseSession, inputXs, inputYs, times,
inputYs, times, pointerIds, codes, inputSize, commitPoint, outWords, frequencies, pointerIds, codes, inputSize, commitPoint, outWords, frequencies, outputIndices,
outputIndices, outputTypes); outputTypes);
} }
static void setTypingSuggestFactoryMethod(SuggestInterface *(*factoryMethod)(int, int)) { static void setTypingSuggestFactoryMethod(SuggestInterface *(*factoryMethod)(int, int)) {
@ -50,11 +50,11 @@ class TypingSuggest : public SuggestInterface {
private: private:
DISALLOW_IMPLICIT_CONSTRUCTORS(TypingSuggest); DISALLOW_IMPLICIT_CONSTRUCTORS(TypingSuggest);
static SuggestInterface *getTypingSuggestInstance(int maxWordLength, int maxWords) { static SuggestInterface *getTypingSuggestInstance(int maxWordLength, int maxWords) {
if (sTypingSuggestFactoryMethod) { if (!sTypingSuggestFactoryMethod) {
return sTypingSuggestFactoryMethod(maxWordLength, maxWords);
}
return 0; return 0;
} }
return sTypingSuggestFactoryMethod(maxWordLength, maxWords);
}
static SuggestInterface *(*sTypingSuggestFactoryMethod)(int, int); static SuggestInterface *(*sTypingSuggestFactoryMethod)(int, int);
SuggestInterface *mSuggestInterface; SuggestInterface *mSuggestInterface;