| 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 "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "base/threading/sequenced_worker_pool.h" | 6 #include "base/threading/sequenced_worker_pool.h" |
| 7 #include "mojo/application/application_runner_chromium.h" | 7 #include "mojo/application/application_runner_chromium.h" |
| 8 #include "mojo/public/c/system/main.h" | 8 #include "mojo/public/c/system/main.h" |
| 9 #include "mojo/public/cpp/application/application_connection.h" | 9 #include "mojo/public/cpp/application/application_connection.h" |
| 10 #include "mojo/public/cpp/application/application_delegate.h" | 10 #include "mojo/public/cpp/application/application_delegate.h" |
| 11 #include "mojo/public/cpp/application/application_impl.h" | 11 #include "mojo/public/cpp/application/application_impl.h" |
| 12 #include "mojo/public/cpp/application/connect.h" | 12 #include "mojo/public/cpp/application/connect.h" |
| 13 #include "mojo/public/cpp/application/interface_factory.h" | |
| 14 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc
her.mojom.h" | 13 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc
her.mojom.h" |
| 15 #include "services/keyboard/linux/keyboard_service_impl.h" | 14 #include "services/keyboard/linux/keyboard_service_impl.h" |
| 16 | 15 |
| 17 namespace keyboard { | 16 namespace keyboard { |
| 18 | 17 |
| 19 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory { | 18 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory { |
| 20 public: | 19 public: |
| 21 explicit KeyboardServiceFactoryImpl( | 20 explicit KeyboardServiceFactoryImpl( |
| 22 mojo::InterfaceRequest<KeyboardServiceFactory> request) | 21 mojo::InterfaceRequest<KeyboardServiceFactory> request) |
| 23 : binding_(this, request.Pass()) {} | 22 : binding_(this, request.Pass()) {} |
| 24 | 23 |
| 25 // |InterfaceFactory<KeyboardService>| implementation: | 24 // |keyboard::KeyboardServiceFactory| implementation: |
| 26 void CreateKeyboardService( | 25 void CreateKeyboardService( |
| 27 mojo::InterfaceRequest<mojo::NativeViewportEventDispatcher> dispatcher, | 26 mojo::InterfaceRequest<mojo::NativeViewportEventDispatcher> dispatcher, |
| 28 mojo::InterfaceRequest<KeyboardService> request) override { | 27 mojo::InterfaceRequest<KeyboardService> request) override { |
| 29 new LinuxKeyboardServiceImpl(request.Pass(), dispatcher.Pass()); | 28 new LinuxKeyboardServiceImpl(request.Pass(), dispatcher.Pass()); |
| 30 } | 29 } |
| 31 | 30 |
| 32 private: | 31 private: |
| 33 mojo::StrongBinding<keyboard::KeyboardServiceFactory> binding_; | 32 mojo::StrongBinding<keyboard::KeyboardServiceFactory> binding_; |
| 34 | 33 |
| 35 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceFactoryImpl); | 34 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceFactoryImpl); |
| 36 }; | 35 }; |
| 37 | 36 |
| 38 class KeyboardServiceApp | 37 class KeyboardServiceApp : public mojo::ApplicationDelegate { |
| 39 : public mojo::ApplicationDelegate, | |
| 40 public mojo::InterfaceFactory<KeyboardServiceFactory> { | |
| 41 public: | 38 public: |
| 42 KeyboardServiceApp() {} | 39 KeyboardServiceApp() {} |
| 43 ~KeyboardServiceApp() override {} | 40 ~KeyboardServiceApp() override {} |
| 44 | 41 |
| 45 private: | 42 private: |
| 46 | 43 |
| 47 // |ApplicationDelegate| override: | 44 // |ApplicationDelegate| override: |
| 48 bool ConfigureIncomingConnection( | 45 bool ConfigureIncomingConnection( |
| 49 mojo::ApplicationConnection* connection) override { | 46 mojo::ApplicationConnection* connection) override { |
| 50 connection->AddService<KeyboardServiceFactory>(this); | 47 connection->GetServiceProviderImpl().AddService<KeyboardServiceFactory>([]( |
| 48 const mojo::ConnectionContext& connection_context, |
| 49 mojo::InterfaceRequest<KeyboardServiceFactory> |
| 50 keyboard_service_factory_request) { |
| 51 new KeyboardServiceFactoryImpl(keyboard_service_factory_request.Pass()); |
| 52 }); |
| 51 return true; | 53 return true; |
| 52 } | 54 } |
| 53 | 55 |
| 54 // |InterfaceFactory<KeyboardService>| implementation: | |
| 55 void Create(const mojo::ConnectionContext& connection_context, | |
| 56 mojo::InterfaceRequest<KeyboardServiceFactory> request) override { | |
| 57 new KeyboardServiceFactoryImpl(request.Pass()); | |
| 58 } | |
| 59 | |
| 60 private: | 56 private: |
| 61 | |
| 62 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp); | 57 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp); |
| 63 }; | 58 }; |
| 64 | 59 |
| 65 } // namespace keyboard | 60 } // namespace keyboard |
| 66 | 61 |
| 67 MojoResult MojoMain(MojoHandle application_request) { | 62 MojoResult MojoMain(MojoHandle application_request) { |
| 68 mojo::ApplicationRunnerChromium runner( | 63 mojo::ApplicationRunnerChromium runner( |
| 69 new keyboard::KeyboardServiceApp()); | 64 new keyboard::KeyboardServiceApp()); |
| 70 return runner.Run(application_request); | 65 return runner.Run(application_request); |
| 71 } | 66 } |
| OLD | NEW |