OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/macros.h" | |
6 #include "examples/surfaces_app/child_impl.h" | |
7 #include "mojo/application/application_runner_chromium.h" | |
8 #include "mojo/public/c/system/main.h" | |
9 #include "mojo/public/cpp/application/application_connection.h" | |
10 #include "mojo/public/cpp/application/application_delegate.h" | |
11 #include "mojo/public/cpp/application/application_impl.h" | |
12 #include "mojo/public/cpp/bindings/string.h" | |
13 | |
14 namespace mojo { | |
15 namespace examples { | |
16 | |
17 class ChildApp : public ApplicationDelegate, public InterfaceFactory<Child> { | |
18 public: | |
19 ChildApp() {} | |
20 ~ChildApp() override {} | |
21 | |
22 void Initialize(ApplicationImpl* app) override { | |
23 surfaces_service_connection_ = | |
24 app->ConnectToApplication("mojo:surfaces_service"); | |
25 } | |
26 | |
27 // ApplicationDelegate implementation. | |
28 bool ConfigureIncomingConnection(ApplicationConnection* connection) override { | |
29 connection->AddService(this); | |
30 return true; | |
31 } | |
32 | |
33 // InterfaceFactory<Child> implementation. | |
34 void Create(ApplicationConnection* connection, | |
35 InterfaceRequest<Child> request) override { | |
36 new ChildImpl(surfaces_service_connection_, request.Pass()); | |
37 } | |
38 | |
39 private: | |
40 ApplicationConnection* surfaces_service_connection_; | |
41 | |
42 DISALLOW_COPY_AND_ASSIGN(ChildApp); | |
43 }; | |
44 | |
45 } // namespace examples | |
46 } // namespace mojo | |
47 | |
48 MojoResult MojoMain(MojoHandle application_request) { | |
49 mojo::ApplicationRunnerChromium runner(new mojo::examples::ChildApp); | |
50 return runner.Run(application_request); | |
51 } | |
OLD | NEW |