| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/keyboard/webui/vk_mojo_handler.h" | 5 #include "ui/keyboard/webui/vk_mojo_handler.h" |
| 6 | 6 |
| 7 #include "ui/aura/window.h" | 7 #include "ui/aura/window.h" |
| 8 #include "ui/base/ime/input_method.h" | 8 #include "ui/base/ime/input_method.h" |
| 9 #include "ui/base/ime/text_input_client.h" | 9 #include "ui/base/ime/text_input_client.h" |
| 10 #include "ui/keyboard/keyboard_controller.h" | 10 #include "ui/keyboard/keyboard_controller.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 binding_.client()->OnTextInputTypeChanged(type_name); | 109 binding_.client()->OnTextInputTypeChanged(type_name); |
| 110 } | 110 } |
| 111 | 111 |
| 112 void VKMojoHandler::OnInputMethodDestroyed( | 112 void VKMojoHandler::OnInputMethodDestroyed( |
| 113 const ui::InputMethod* input_method) { | 113 const ui::InputMethod* input_method) { |
| 114 } | 114 } |
| 115 | 115 |
| 116 void VKMojoHandler::OnShowImeIfNeeded() { | 116 void VKMojoHandler::OnShowImeIfNeeded() { |
| 117 } | 117 } |
| 118 | 118 |
| 119 void VKMojoHandler::OnKeyboardBoundsUnchanged() { |
| 120 } |
| 121 |
| 119 } // namespace keyboard | 122 } // namespace keyboard |
| OLD | NEW |