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

Unified Diff: pkg/http/lib/src/streamed_response.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/streamed_response.dart
diff --git a/pkg/http/lib/src/streamed_response.dart b/pkg/http/lib/src/streamed_response.dart
index 8810df7d60e221e20193c5b3ec99ad418e5bec54..218643b2127469915d5ba68ff643c8efdfc5be9b 100644
--- a/pkg/http/lib/src/streamed_response.dart
+++ b/pkg/http/lib/src/streamed_response.dart
@@ -7,6 +7,7 @@ library streamed_response;
import 'dart:io';
import 'base_response.dart';
+import 'base_request.dart';
/// An HTTP response where the response body is received asynchronously after
/// the headers have been received.
@@ -19,13 +20,15 @@ class StreamedResponse extends BaseResponse {
this.stream,
int statusCode,
int contentLength,
- {Map<String, String> headers: const <String>{},
+ {BaseRequest request,
+ Map<String, String> headers: const <String>{},
bool isRedirect: false,
bool persistentConnection: true,
String reasonPhrase})
: super(
statusCode,
contentLength,
+ request: request,
headers: headers,
isRedirect: isRedirect,
persistentConnection: persistentConnection,

Powered by Google App Engine
This is Rietveld 408576698