This source file includes following definitions.
- DispatchKeyEvent
- Reset
- OnTextInputTypeChanged
- OnCaretBoundsChanged
#include "ui/base/ime/linux/fake_input_method_context.h"
namespace ui {
FakeInputMethodContext::FakeInputMethodContext() {}
bool FakeInputMethodContext::DispatchKeyEvent(
const ui::KeyEvent& ) {
return false;
}
void FakeInputMethodContext::Reset() {
}
void FakeInputMethodContext::OnTextInputTypeChanged(
ui::TextInputType ) {
}
void FakeInputMethodContext::OnCaretBoundsChanged(
const gfx::Rect& ) {
}
}