Chromium Code Reviews| Index: services/dart/test/pingpong_target/main.dart |
| diff --git a/services/dart/test/pingpong_target/main.dart b/services/dart/test/pingpong_target/main.dart |
| index a91d04022112b579c4f05582826594c4785e18bd..16f7f322a14fcde0e031892de7e00ac1e1e8c65b 100644 |
| --- a/services/dart/test/pingpong_target/main.dart |
| +++ b/services/dart/test/pingpong_target/main.dart |
| @@ -25,6 +25,15 @@ class PingPongServiceImpl implements PingPongService { |
| void ping(int pingValue) => _pingPongClient.ptr.pong(pingValue + 1); |
| + // These methods are unimplemented; they merely throw on invocation. |
| + Future<PingPongServicePingTargetUrlResponseParams> pingTargetUrl( |
| + String url, int count, [Function responseFactory = null]) => |
|
zra
2015/03/11 18:38:06
ditto
|
| + throw "Unimplemented"; |
| + Future<PingPongServicePingTargetServiceResponseParams> pingTargetService( |
| + Object service, int count, [Function responseFactory = null]) => |
|
zra
2015/03/11 18:38:06
ditto
|
| + throw "Unimplemented"; |
| + void getPingPongService(Object service) => throw "Unimplemented"; |
| + |
| void quit() { |
| if (_pingPongClient != null) { |
| _pingPongClient.close(); |