Bug 573741 - Remove mComposing and let gecko keep track of composition state, r=blassey

This commit is contained in:
Michael Wu 2010-06-29 21:11:43 -07:00
Родитель 24b51db044
Коммит 88738a4fea
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -330,10 +330,7 @@ class GeckoInputConnection
@Override
public boolean beginBatchEdit() {
if (mComposing)
return true;
GeckoAppShell.sendEventToGecko(new GeckoEvent(true, null));
mComposing = true;
return true;
}
@Override
@ -356,10 +353,7 @@ class GeckoInputConnection
@Override
public boolean endBatchEdit() {
updateExtractedText();
if (!mComposing)
return true;
GeckoAppShell.sendEventToGecko(new GeckoEvent(false, null));
mComposing = false;
return true;
}
@Override
@ -433,7 +427,6 @@ class GeckoInputConnection
imm.updateExtractedText(GeckoApp.surfaceView, mExtractToken, mExtractedText);
}
boolean mComposing;
int mExtractToken;
final ExtractedText mExtractedText = new ExtractedText();