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

Side by Side Diff: lib/src/streamed_response.dart

Issue 1580273002: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/http@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « lib/src/streamed_request.dart ('k') | lib/src/utils.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library streamed_response;
6
7 import 'dart:async'; 5 import 'dart:async';
8 6
9 import 'byte_stream.dart'; 7 import 'byte_stream.dart';
10 import 'base_response.dart'; 8 import 'base_response.dart';
11 import 'base_request.dart'; 9 import 'base_request.dart';
12 import 'utils.dart'; 10 import 'utils.dart';
13 11
14 /// An HTTP response where the response body is received asynchronously after 12 /// An HTTP response where the response body is received asynchronously after
15 /// the headers have been received. 13 /// the headers have been received.
16 class StreamedResponse extends BaseResponse { 14 class StreamedResponse extends BaseResponse {
(...skipping 15 matching lines...) Expand all
32 : super( 30 : super(
33 statusCode, 31 statusCode,
34 contentLength: contentLength, 32 contentLength: contentLength,
35 request: request, 33 request: request,
36 headers: headers, 34 headers: headers,
37 isRedirect: isRedirect, 35 isRedirect: isRedirect,
38 persistentConnection: persistentConnection, 36 persistentConnection: persistentConnection,
39 reasonPhrase: reasonPhrase), 37 reasonPhrase: reasonPhrase),
40 this.stream = toByteStream(stream); 38 this.stream = toByteStream(stream);
41 } 39 }
OLDNEW
« no previous file with comments | « lib/src/streamed_request.dart ('k') | lib/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698