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

Unified Diff: services/dart/test/pingpong_target/main.dart

Issue 998693004: Enable dartanalyze warnings. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase to ToT 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 side-by-side diff with in-line comments
Download patch
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();
« services/dart/test/pingpong/main.dart ('K') | « services/dart/test/pingpong/main.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698