From 174d116ad553e7cd2c028229e62ebd24130597e3 Mon Sep 17 00:00:00 2001 From: "komatsu@chromium.org" Date: Thu, 19 Dec 2013 16:24:37 +0000 Subject: Implement input.ime.sendKeyEvents and its browsertest. BUG=326931 Review URL: https://codereview.chromium.org/110513004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241873 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/chromeos/input_method/input_method_engine_interface.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chrome/browser/chromeos/input_method/input_method_engine_interface.h') diff --git a/chrome/browser/chromeos/input_method/input_method_engine_interface.h b/chrome/browser/chromeos/input_method/input_method_engine_interface.h index c6b0655..4fba077 100644 --- a/chrome/browser/chromeos/input_method/input_method_engine_interface.h +++ b/chrome/browser/chromeos/input_method/input_method_engine_interface.h @@ -186,6 +186,10 @@ class InputMethodEngineInterface : public IBusEngineHandlerInterface { virtual bool CommitText(int context_id, const char* text, std::string* error) = 0; + // Send the sequence of key events. + virtual bool SendKeyEvents(int context_id, + const std::vector& events) = 0; + // This function returns the current property of the candidate window. // The caller can use the returned value as the default property and // modify some of specified items. -- cgit v1.1