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

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

Issue 810223002: Remove the http package from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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/base_response.dart
diff --git a/pkg/http/lib/src/base_response.dart b/pkg/http/lib/src/base_response.dart
deleted file mode 100644
index f2225962eb3ac58ee4f7dac7f336d5a853987268..0000000000000000000000000000000000000000
--- a/pkg/http/lib/src/base_response.dart
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library base_response;
-
-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;
-
- /// The status code of the response.
- final int statusCode;
-
- /// The reason phrase associated with the status code.
- final String reasonPhrase;
-
- /// The size of the response body, in bytes.
- ///
- /// If the size of the request is not known in advance, this is `null`.
- final int contentLength;
-
- // TODO(nweiz): automatically parse cookies from headers
-
- // TODO(nweiz): make this a HttpHeaders object.
- /// The headers for this response.
- final Map<String, String> headers;
-
- /// Whether this response is a redirect.
- final bool isRedirect;
-
- /// Whether the server requested that a persistent connection be maintained.
- final bool persistentConnection;
-
- /// Creates a new HTTP response.
- BaseResponse(
- this.statusCode,
- {this.contentLength,
- this.request,
- this.headers: const {},
- this.isRedirect: false,
- this.persistentConnection: true,
- this.reasonPhrase}) {
- if (statusCode < 100) {
- throw new ArgumentError("Invalid status code $statusCode.");
- } else if (contentLength != null && contentLength < 0) {
- throw new ArgumentError("Invalid content length $contentLength.");
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698