| Index: views/ime/input_method_gtk.cc
|
| diff --git a/views/ime/input_method_gtk.cc b/views/ime/input_method_gtk.cc
|
| index ee1dabb6ee0e73aba0407dfe85925692b00673d9..50fd37e70dcecb64e11bd678b7c3988a66d9aa3f 100644
|
| --- a/views/ime/input_method_gtk.cc
|
| +++ b/views/ime/input_method_gtk.cc
|
| @@ -209,7 +209,7 @@ void InputMethodGtk::OnDidChangeFocus(View* focused_before, View* focused) {
|
| }
|
|
|
| void InputMethodGtk::ConfirmCompositionText() {
|
| - TextInputClient* client = GetTextInputClient();
|
| + ui::TextInputClient* client = GetTextInputClient();
|
| if (client && client->HasCompositionText())
|
| client->ConfirmCompositionText();
|
|
|
| @@ -297,14 +297,14 @@ void InputMethodGtk::ProcessUnfilteredKeyPressEvent(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());
|
| }
|
|
|
| void InputMethodGtk::ProcessInputMethodResult(const KeyEvent& key,
|
| bool filtered) {
|
| - TextInputClient* client = GetTextInputClient();
|
| + ui::TextInputClient* client = GetTextInputClient();
|
| DCHECK(client);
|
|
|
| if (result_text_.length()) {
|
| @@ -427,7 +427,7 @@ void InputMethodGtk::OnPreeditEnd(GtkIMContext* context) {
|
| composition_.Clear();
|
|
|
| if (!handling_key_event_) {
|
| - TextInputClient* client = GetTextInputClient();
|
| + ui::TextInputClient* client = GetTextInputClient();
|
| if (client && client->HasCompositionText())
|
| client->ClearCompositionText();
|
| }
|
|
|