OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/base/ime/input_method_android.h" | 5 #include "ui/base/ime/input_method_android.h" |
6 | 6 |
7 #include "ui/base/ime/text_input_client.h" | 7 #include "ui/base/ime/text_input_client.h" |
8 #include "ui/events/event.h" | 8 #include "ui/events/event.h" |
9 | 9 |
10 // TODO(bshe): This is currently very similar to InputMethodMUS. Consider unify | 10 // TODO(bshe): This is currently very similar to InputMethodMUS. Consider unify |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 } | 42 } |
43 | 43 |
44 void InputMethodAndroid::OnCaretBoundsChanged( | 44 void InputMethodAndroid::OnCaretBoundsChanged( |
45 const ui::TextInputClient* client) { | 45 const ui::TextInputClient* client) { |
46 } | 46 } |
47 | 47 |
48 void InputMethodAndroid::CancelComposition( | 48 void InputMethodAndroid::CancelComposition( |
49 const ui::TextInputClient* client) { | 49 const ui::TextInputClient* client) { |
50 } | 50 } |
51 | 51 |
52 void InputMethodAndroid::OnInputLocaleChanged() {} | |
53 | |
54 std::string InputMethodAndroid::GetInputLocale() { | |
55 return ""; | |
56 } | |
57 | |
58 bool InputMethodAndroid::IsCandidatePopupOpen() const { | 52 bool InputMethodAndroid::IsCandidatePopupOpen() const { |
59 return false; | 53 return false; |
60 } | 54 } |
61 | 55 |
62 } // namespace ui | 56 } // namespace ui |
OLD | NEW |