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

Side by Side Diff: lib/src/io_client.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/io.dart ('k') | lib/src/mock_client.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 io_client;
6
7 import 'dart:async'; 5 import 'dart:async';
8 6
9 import 'base_client.dart'; 7 import 'base_client.dart';
10 import 'base_request.dart'; 8 import 'base_request.dart';
11 import 'exception.dart'; 9 import 'exception.dart';
12 import 'io.dart' as io; 10 import 'io.dart' as io;
13 import 'streamed_response.dart'; 11 import 'streamed_response.dart';
14 12
15 /// A `dart:io`-based HTTP client. 13 /// A `dart:io`-based HTTP client.
16 /// 14 ///
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 }); 75 });
78 } 76 }
79 77
80 /// Closes the client. This terminates all active connections. If a client 78 /// Closes the client. This terminates all active connections. If a client
81 /// remains unclosed, the Dart process may not terminate. 79 /// remains unclosed, the Dart process may not terminate.
82 void close() { 80 void close() {
83 if (_inner != null) _inner.close(force: true); 81 if (_inner != null) _inner.close(force: true);
84 _inner = null; 82 _inner = null;
85 } 83 }
86 } 84 }
OLDNEW
« no previous file with comments | « lib/src/io.dart ('k') | lib/src/mock_client.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698