diff options
author | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 16:24:37 +0000 |
---|---|---|
committer | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 16:24:37 +0000 |
commit | 174d116ad553e7cd2c028229e62ebd24130597e3 (patch) | |
tree | 489896d621091efac7ed07531bfa243c4da81f52 /chrome/browser/chromeos/input_method/input_method_engine.h | |
parent | d59a1c1e3d73290000ef93c675e2b4cdc111d7b0 (diff) | |
download | chromium_src-174d116ad553e7cd2c028229e62ebd24130597e3.zip chromium_src-174d116ad553e7cd2c028229e62ebd24130597e3.tar.gz chromium_src-174d116ad553e7cd2c028229e62ebd24130597e3.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_engine.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_engine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.h b/chrome/browser/chromeos/input_method/input_method_engine.h index e53cfb0..b49d1de 100644 --- a/chrome/browser/chromeos/input_method/input_method_engine.h +++ b/chrome/browser/chromeos/input_method/input_method_engine.h @@ -53,6 +53,8 @@ class InputMethodEngine : public InputMethodEngineInterface { virtual bool ClearComposition(int context_id, std::string* error) OVERRIDE; virtual bool CommitText(int context_id, const char* text, std::string* error) OVERRIDE; + virtual bool SendKeyEvents(int context_id, + const std::vector<KeyboardEvent>& events) OVERRIDE; virtual const CandidateWindowProperty& GetCandidateWindowProperty() const OVERRIDE; virtual void SetCandidateWindowProperty( |