summaryrefslogtreecommitdiffstats
path: root/views/ime/input_method_wayland.cc
diff options
context:
space:
mode:
Diffstat (limited to 'views/ime/input_method_wayland.cc')
-rw-r--r--views/ime/input_method_wayland.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/ime/input_method_wayland.cc b/views/ime/input_method_wayland.cc
index 20d3ff2..4b90b2b 100644
--- a/views/ime/input_method_wayland.cc
+++ b/views/ime/input_method_wayland.cc
@@ -68,7 +68,7 @@ void InputMethodWayland::ProcessKeyPressEvent(const KeyEvent& key) {
// event (ctrl-a, return, tab, etc.). We need to send the character to the
// focused text input client by calling TextInputClient::InsertChar().
char16 ch = key.GetCharacter();
- TextInputClient* client = GetTextInputClient();
+ ui::TextInputClient* client = GetTextInputClient();
if (ch && client)
client->InsertChar(ch, key.flags());
}