Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: ui/base/ime/linux/fake_input_method_context.h

Issue 1068093002: Refactoring for InputMethodAuraLinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removes unexpected 229 keydown for non-IME users. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/base/ime/linux/fake_input_method_context.h
diff --git a/ui/base/ime/linux/fake_input_method_context.h b/ui/base/ime/linux/fake_input_method_context.h
index 769847e22b382b6640a932cb49f42551b4279a44..717a0192f77063e54298f894a0ba295084932f3b 100644
--- a/ui/base/ime/linux/fake_input_method_context.h
+++ b/ui/base/ime/linux/fake_input_method_context.h
@@ -17,8 +17,9 @@ class FakeInputMethodContext : public LinuxInputMethodContext {
// Overriden from ui::LinuxInputMethodContext
bool DispatchKeyEvent(const ui::KeyEvent& key_event) override;
void Reset() override;
- void OnTextInputTypeChanged(ui::TextInputType text_input_type) override;
- void OnCaretBoundsChanged(const gfx::Rect& caret_bounds) override;
+ void Focus() override;
+ void Blur() override;
+ void SetCursorLocation(const gfx::Rect& rect) override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeInputMethodContext);

Powered by Google App Engine
This is Rietveld 408576698