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

Unified Diff: examples/dart/hello_world/world/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/world/main.dart
diff --git a/examples/dart/hello_world/world/main.dart b/examples/dart/hello_world/world/main.dart
index f804b56238dbcc22a9bbf107d441b54699ef9a1f..b1343feee44ab6f1c59db0b919b29a7527dc6d8d 100644
--- a/examples/dart/hello_world/world/main.dart
+++ b/examples/dart/hello_world/world/main.dart
@@ -19,6 +19,5 @@ class World extends Application {
main(List args) {
MojoHandle appHandle = new MojoHandle(args[0]);
- var world = new World.fromHandle(appHandle);
- world.listen();
+ new World.fromHandle(appHandle);
}

Powered by Google App Engine
This is Rietveld 408576698