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 #include "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/message_loop/message_loop.h" | 6 #include "base/message_loop/message_loop.h" |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "mojo/public/c/system/main.h" | 8 #include "mojo/public/c/system/main.h" |
9 #include "mojo/public/cpp/bindings/binding_set.h" | 9 #include "mojo/public/cpp/bindings/binding_set.h" |
10 #include "mojo/shell/public/cpp/application_runner.h" | 10 #include "services/shell/public/cpp/application_runner.h" |
11 #include "mojo/shell/public/cpp/connector.h" | 11 #include "services/shell/public/cpp/connector.h" |
12 #include "mojo/shell/public/cpp/shell_client.h" | 12 #include "services/shell/public/cpp/shell_client.h" |
13 #include "mojo/shell/tests/lifecycle/lifecycle_unittest.mojom.h" | 13 #include "services/shell/tests/lifecycle/lifecycle_unittest.mojom.h" |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 void QuitLoop(base::RunLoop* loop) { | 17 void QuitLoop(base::RunLoop* loop) { |
18 loop->Quit(); | 18 loop->Quit(); |
19 } | 19 } |
20 | 20 |
21 class Parent | 21 class Parent |
22 : public mojo::ShellClient, | 22 : public mojo::ShellClient, |
23 public mojo::InterfaceFactory<mojo::shell::test::mojom::Parent>, | 23 public mojo::InterfaceFactory<mojo::shell::test::mojom::Parent>, |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(Parent); | 72 DISALLOW_COPY_AND_ASSIGN(Parent); |
73 }; | 73 }; |
74 | 74 |
75 } // namespace | 75 } // namespace |
76 | 76 |
77 MojoResult MojoMain(MojoHandle shell_handle) { | 77 MojoResult MojoMain(MojoHandle shell_handle) { |
78 Parent* parent = new Parent; | 78 Parent* parent = new Parent; |
79 return mojo::ApplicationRunner(parent).Run(shell_handle); | 79 return mojo::ApplicationRunner(parent).Run(shell_handle); |
80 } | 80 } |
OLD | NEW |