| 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 SERVICES_UI_IME_IME_SERVER_IMPL_H_ | 5 #ifndef SERVICES_UI_IME_IME_SERVER_IMPL_H_ |
| 6 #define SERVICES_UI_IME_IME_SERVER_IMPL_H_ | 6 #define SERVICES_UI_IME_IME_SERVER_IMPL_H_ |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "mojo/public/cpp/bindings/binding_set.h" | 10 #include "mojo/public/cpp/bindings/binding_set.h" |
| 11 #include "services/catalog/public/interfaces/catalog.mojom.h" | 11 #include "services/catalog/public/interfaces/catalog.mojom.h" |
| 12 #include "services/ui/public/interfaces/ime.mojom.h" | 12 #include "services/ui/public/interfaces/ime/ime.mojom.h" |
| 13 | 13 |
| 14 namespace service_manager { | 14 namespace service_manager { |
| 15 class Connector; | 15 class Connector; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace ui { | 18 namespace ui { |
| 19 | 19 |
| 20 class IMEServerImpl : public mojom::IMEServer { | 20 class IMEServerImpl : public mojom::IMEServer { |
| 21 public: | 21 public: |
| 22 IMEServerImpl(); | 22 IMEServerImpl(); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 42 using PendingRequest = | 42 using PendingRequest = |
| 43 std::pair<mojom::TextInputClientPtr, mojom::InputMethodRequest>; | 43 std::pair<mojom::TextInputClientPtr, mojom::InputMethodRequest>; |
| 44 std::queue<PendingRequest> pending_requests_; | 44 std::queue<PendingRequest> pending_requests_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(IMEServerImpl); | 46 DISALLOW_COPY_AND_ASSIGN(IMEServerImpl); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace ui | 49 } // namespace ui |
| 50 | 50 |
| 51 #endif // SERVICES_UI_IME_IME_SERVER_IMPL_H_ | 51 #endif // SERVICES_UI_IME_IME_SERVER_IMPL_H_ |
| OLD | NEW |