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

Unified Diff: pkg/http/lib/src/base_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
« no previous file with comments | « no previous file | pkg/http/lib/src/io_client.dart » ('j') | pkg/http/lib/src/response.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/lib/src/base_response.dart
diff --git a/pkg/http/lib/src/base_response.dart b/pkg/http/lib/src/base_response.dart
index 57f4a95b9d578c7e825d59d0cd77210214f14f44..8b7da0cbb743c676d4924e59eee213aac5f29f66 100644
--- a/pkg/http/lib/src/base_response.dart
+++ b/pkg/http/lib/src/base_response.dart
@@ -6,11 +6,16 @@ library base_response;
import 'dart:io';
+import 'base_request.dart';
+
/// The base class for HTTP responses.
///
/// Subclasses of [BaseResponse] are usually not constructed manually; instead,
/// they're returned by [BaseClient.send] or other HTTP client methods.
abstract class BaseResponse {
+ /// The (frozen) request that triggered this response.
+ final BaseRequest request;
Bob Nystrom 2012/11/29 23:57:04 Pedantic, but you should have a test that you can
nweiz 2012/11/30 00:08:54 Done.
+
/// The status code of the response.
final int statusCode;
@@ -37,7 +42,8 @@ abstract class BaseResponse {
BaseResponse(
this.statusCode,
this.contentLength,
- {this.headers: const <String>{},
+ {this.request,
+ this.headers: const <String>{},
this.isRedirect: false,
this.persistentConnection: true,
this.reasonPhrase});
« no previous file with comments | « no previous file | pkg/http/lib/src/io_client.dart » ('j') | pkg/http/lib/src/response.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698