Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: examples/dart/hello_world/hello/main.dart

Issue 968243003: Dart: Adds optional named arguments for creating bindings. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Binding -> Stub, delegate -> impl Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'mojo:application'; 8 import 'mojo:application';
9 import 'mojo:bindings'; 9 import 'mojo:bindings';
10 import 'mojo:core'; 10 import 'mojo:core';
11 11
12 class Hello extends Application { 12 class Hello extends Application {
13 Hello.fromHandle(MojoHandle handle) : super.fromHandle(handle); 13 Hello.fromHandle(MojoHandle handle) : super.fromHandle(handle);
14 14
15 void initialize(List<String> args, String url) { 15 void initialize(List<String> args, String url) {
16 print("$url Hello"); 16 print("$url Hello");
17 // We expect to find the world mojo application at the same 17 // We expect to find the world mojo application at the same
18 // path as this application. 18 // path as this application.
19 connectToApplication(url.replaceAll("hello", "world")); 19 var c = connectToApplication(url.replaceAll("hello", "world"));
20 close(); 20 c.listen(onClosed: close);
hansmuller1 2015/03/03 20:32:16 I like this. It's subtly different from the origi
zra 2015/03/03 21:28:54 Added comment.
21 } 21 }
22 } 22 }
23 23
24 main(List args) { 24 main(List args) {
25 MojoHandle appHandle = new MojoHandle(args[0]); 25 MojoHandle appHandle = new MojoHandle(args[0]);
26 new Hello.fromHandle(appHandle); 26 new Hello.fromHandle(appHandle);
27 } 27 }
OLDNEW
« no previous file with comments | « no previous file | mojo/dart/embedder/test/dart_to_cpp_tests.dart » ('j') | mojo/public/dart/src/application.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698