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 "mojo/environment/scoped_chromium_init.h" |
6 #include "mojo/public/c/system/main.h" | 7 #include "mojo/public/c/system/main.h" |
7 #include "mojo/public/cpp/application/application_impl_base.h" | 8 #include "mojo/public/cpp/application/application_impl_base.h" |
8 #include "mojo/public/cpp/application/run_application.h" | 9 #include "mojo/public/cpp/application/run_application.h" |
9 #include "mojo/public/cpp/application/service_provider_impl.h" | 10 #include "mojo/public/cpp/application/service_provider_impl.h" |
10 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc
her.mojom.h" | 11 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc
her.mojom.h" |
11 #include "services/keyboard/linux/keyboard_service_impl.h" | 12 #include "services/keyboard/linux/keyboard_service_impl.h" |
12 | 13 |
13 namespace keyboard { | 14 namespace keyboard { |
14 | 15 |
15 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory { | 16 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 return true; | 50 return true; |
50 } | 51 } |
51 | 52 |
52 private: | 53 private: |
53 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp); | 54 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp); |
54 }; | 55 }; |
55 | 56 |
56 } // namespace keyboard | 57 } // namespace keyboard |
57 | 58 |
58 MojoResult MojoMain(MojoHandle application_request) { | 59 MojoResult MojoMain(MojoHandle application_request) { |
| 60 mojo::ScopedChromiumInit init; |
59 keyboard::KeyboardServiceApp keyboard_service_app; | 61 keyboard::KeyboardServiceApp keyboard_service_app; |
60 return mojo::RunMainApplication(application_request, &keyboard_service_app); | 62 return mojo::RunApplication(application_request, &keyboard_service_app); |
61 } | 63 } |
OLD | NEW |