Index: ui/base/ime/input_method_chromeos.cc |
diff --git a/ui/base/ime/input_method_chromeos.cc b/ui/base/ime/input_method_chromeos.cc |
index 72a3048f092f387b0467c21143de39305c3f1b2f..d49c734a6c6c035f6a9fe9ee2f2da358a6b45c45 100644 |
--- a/ui/base/ime/input_method_chromeos.cc |
+++ b/ui/base/ime/input_method_chromeos.cc |
@@ -439,14 +439,6 @@ bool InputMethodChromeOS::HasInputMethodResult() const { |
return result_text_.length() || composition_changed_; |
} |
-bool InputMethodChromeOS::SendFakeProcessKeyEvent(bool pressed) const { |
- KeyEvent evt(pressed ? ET_KEY_PRESSED : ET_KEY_RELEASED, |
- pressed ? VKEY_PROCESSKEY : VKEY_UNKNOWN, |
- EF_IME_FABRICATED_KEY); |
- ignore_result(DispatchKeyEventPostIME(&evt)); |
- return evt.stopped_propagation(); |
-} |
- |
void InputMethodChromeOS::CommitText(const std::string& text) { |
if (text.empty()) |
return; |