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

Unified Diff: examples/dart/hello_world/hello/main.dart

Issue 959993002: Dart: Removes name conflicts from generated bindings. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove interface tear-offs from Proxies Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: examples/dart/hello_world/hello/main.dart
diff --git a/examples/dart/hello_world/hello/main.dart b/examples/dart/hello_world/hello/main.dart
index 892ecd8b743a51393b9406db7b330b5f0acb7baa..4dcbd4c86614081d699517f8d177cc5131559b46 100644
--- a/examples/dart/hello_world/hello/main.dart
+++ b/examples/dart/hello_world/hello/main.dart
@@ -23,6 +23,5 @@ class Hello extends Application {
main(List args) {
MojoHandle appHandle = new MojoHandle(args[0]);
- var hello = new Hello.fromHandle(appHandle);
- hello.listen();
+ new Hello.fromHandle(appHandle);
}

Powered by Google App Engine
This is Rietveld 408576698