From 4eea8aac7e58bbac8968bb66644c8382fbc580ea Mon Sep 17 00:00:00 2001 From: "sgjesse@google.com" Date: Tue, 8 May 2012 09:52:46 +0000 Subject: [PATCH] Fix wrong type in HTTP library R=ager@google.com BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com//10375051 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7408 260f80e4-7a28-3924-810f-c04153c831b5 --- runtime/bin/http_impl.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart index 8b197d799f5..822fbd590ae 100644 --- a/runtime/bin/http_impl.dart +++ b/runtime/bin/http_impl.dart @@ -976,7 +976,7 @@ class _HttpServer implements HttpServer { _closeServer = false; } - addRequestHandler(bool matcher(String path), + addRequestHandler(bool matcher(HttpRequest request), void handler(HttpRequest request, HttpResponse response)) { _handlers.add(new _RequestHandlerRegistration(matcher, handler)); }