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

Unified Diff: pkg/http/lib/src/io_client.dart

Issue 11348309: Keep around a copy of the http.Request that triggered each Response. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: pkg/http/lib/src/io_client.dart
diff --git a/pkg/http/lib/src/io_client.dart b/pkg/http/lib/src/io_client.dart
index ce5722490397f72b679f418ef0a10a96caf0d12b..e263c663a156a6404db1c0c86a8e14c35cc96491 100644
--- a/pkg/http/lib/src/io_client.dart
+++ b/pkg/http/lib/src/io_client.dart
@@ -72,6 +72,7 @@ class IOClient extends BaseClient {
wrapInputStream(response.inputStream),
response.statusCode,
response.contentLength,
+ request: request,
headers: headers,
isRedirect: response.isRedirect,
persistentConnection: response.persistentConnection,

Powered by Google App Engine
This is Rietveld 408576698