OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ | 5 #ifndef COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ |
6 #define COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ | 6 #define COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "components/arc/arc_bridge_service.h" | 10 #include "components/arc/arc_bridge_service.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 34 |
35 // ArcImeHost overrides: | 35 // ArcImeHost overrides: |
36 void SendSetCompositionText(const ui::CompositionText& composition) override; | 36 void SendSetCompositionText(const ui::CompositionText& composition) override; |
37 void SendConfirmCompositionText() override; | 37 void SendConfirmCompositionText() override; |
38 void SendInsertText(const base::string16& text) override; | 38 void SendInsertText(const base::string16& text) override; |
39 | 39 |
40 // arc::mojom::ImeHost overrides: | 40 // arc::mojom::ImeHost overrides: |
41 void OnTextInputTypeChanged(arc::mojom::TextInputType type) override; | 41 void OnTextInputTypeChanged(arc::mojom::TextInputType type) override; |
42 void OnCursorRectChanged(arc::mojom::CursorRectPtr rect) override; | 42 void OnCursorRectChanged(arc::mojom::CursorRectPtr rect) override; |
43 void OnCancelComposition() override; | 43 void OnCancelComposition() override; |
| 44 void ShowImeIfNeeded() override; |
44 | 45 |
45 private: | 46 private: |
46 mojo::Binding<mojom::ImeHost> binding_; | 47 mojo::Binding<mojom::ImeHost> binding_; |
47 Delegate* const delegate_; | 48 Delegate* const delegate_; |
48 ArcBridgeService* const bridge_service_; | 49 ArcBridgeService* const bridge_service_; |
49 | 50 |
50 DISALLOW_COPY_AND_ASSIGN(ArcImeBridgeImpl); | 51 DISALLOW_COPY_AND_ASSIGN(ArcImeBridgeImpl); |
51 }; | 52 }; |
52 | 53 |
53 } // namespace arc | 54 } // namespace arc |
54 | 55 |
55 #endif // COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ | 56 #endif // COMPONENTS_ARC_IME_ARC_IME_BRIDGE_IMPL_H_ |
OLD | NEW |