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 // To run this app: | 5 // To run this app: |
6 // mojo_shell mojo:hello | 6 // mojo_shell mojo:hello |
7 | 7 |
| 8 import 'dart:async'; |
8 import 'dart:mojo.application'; | 9 import 'dart:mojo.application'; |
9 import 'dart:mojo.bindings'; | 10 import 'dart:mojo.bindings'; |
10 import 'dart:mojo.core'; | 11 import 'dart:mojo.core'; |
11 | 12 |
12 class Hello extends Application { | 13 class Hello extends Application { |
13 Hello.fromHandle(MojoHandle handle) : super.fromHandle(handle); | 14 Hello.fromHandle(MojoHandle handle) : super.fromHandle(handle); |
14 | 15 |
15 void initialize(List<String> args, String url) { | 16 void initialize(List<String> args, String url) { |
16 print("$url Hello"); | 17 print("$url Hello"); |
17 | 18 |
18 // We expect to find the world mojo application at the same | 19 // We expect to find the world mojo application at the same |
19 // path as this application. | 20 // path as this application. |
20 var c = connectToApplication(url.replaceAll("hello", "world")); | 21 var c = connectToApplication(url.replaceAll("hello", "world")); |
21 | 22 |
22 // A call to close() here would cause this app to go down before the "world" | 23 // A call to close() here would cause this app to go down before the "world" |
23 // app has a chance to come up. Instead, we wait to close this app until | 24 // app has a chance to come up. Instead, we wait to close this app until |
24 // the "world" app comes up, does its print, and closes its end of the | 25 // the "world" app comes up, does its print, and closes its end of the |
25 // connection. | 26 // connection. |
26 c.onError = close; | 27 c.onError = closeApplication; |
| 28 } |
| 29 |
| 30 Future closeApplication() async { |
| 31 await close(); |
| 32 assert(MojoHandle.reportLeakedHandles()); |
27 } | 33 } |
28 } | 34 } |
29 | 35 |
30 main(List args) { | 36 main(List args) { |
31 MojoHandle appHandle = new MojoHandle(args[0]); | 37 MojoHandle appHandle = new MojoHandle(args[0]); |
32 new Hello.fromHandle(appHandle); | 38 new Hello.fromHandle(appHandle); |
33 } | 39 } |
OLD | NEW |