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

Unified Diff: pkg/http/test/safe_http_server.dart

Issue 131213002: Fix other HttpRequest implementations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | pkg/scheduled_test/lib/src/scheduled_server/safe_http_server.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/test/safe_http_server.dart
diff --git a/pkg/http/test/safe_http_server.dart b/pkg/http/test/safe_http_server.dart
index 9c3622dcf4828863f57913075067b40cae6836d5..4ebcaa2df6d1a87ea21189261ec9f1d0c668f10c 100644
--- a/pkg/http/test/safe_http_server.dart
+++ b/pkg/http/test/safe_http_server.dart
@@ -83,6 +83,7 @@ class _HttpRequestWrapper extends StreamView<List<int>> implements HttpRequest {
int get contentLength => _inner.contentLength;
String get method => _inner.method;
Uri get uri => _inner.uri;
+ Uri get requestedUri => _inner.requestedUri;
HttpHeaders get headers => _inner.headers;
List<Cookie> get cookies => _inner.cookies;
bool get persistentConnection => _inner.persistentConnection;
« no previous file with comments | « no previous file | pkg/scheduled_test/lib/src/scheduled_server/safe_http_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698