| commit | f9aa301b07a9e92c1ab4eb23bbbc85b87501de02 | [log] [tgz] |
|---|---|---|
| author | Zachary Anderson <zra@google.com> | Wed May 18 08:53:48 2016 -0700 |
| committer | Zachary Anderson <zra@google.com> | Wed May 18 08:53:48 2016 -0700 |
| tree | 53e77168a4791f44940329d09026b27ae6bea80b | |
| parent | 057a062a60ba542050ca3b4b58067d5f3b481195 [diff] |
Dart: Fixes rtt benchmark fixes #776 R=johnmccutchan@google.com Review URL: https://codereview.chromium.org/1991843002 .
diff --git a/benchmarks/mojo_rtt_benchmark/lib/main.dart b/benchmarks/mojo_rtt_benchmark/lib/main.dart index 6a3e760..8d1f1e0 100644 --- a/benchmarks/mojo_rtt_benchmark/lib/main.dart +++ b/benchmarks/mojo_rtt_benchmark/lib/main.dart
@@ -47,7 +47,7 @@ // Setup the connection to the echo app. for (int i = 0; i < _numClients; i++) { var newProxy = new EchoProxy.unbound(); - newProxy.errorFuture.then((e) { + newProxy.ctrl.errorFuture.then((e) { _errorHandler(e); }); connectToService(echoUrl, newProxy);