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

Side by Side Diff: utils/pub/http.dart

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
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 /// Helpers for dealing with HTTP. 5 /// Helpers for dealing with HTTP.
6 library pub.http; 6 library pub.http;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 import 'dart:io'; 9 import 'dart:io';
10 import 'dart:json' as json; 10 import 'dart:json' as json;
11 11
12 // TODO(nweiz): Make this import better. 12 // TODO(nweiz): Make this import better.
Bob Nystrom 2013/03/26 01:55:44 Remove comment and add newline after package:
nweiz 2013/03/26 02:09:53 Done.
13 import '../../pkg/http/lib/http.dart' as http; 13 import 'package:http/http.dart' as http;
14 import 'io.dart'; 14 import 'io.dart';
15 import 'log.dart' as log; 15 import 'log.dart' as log;
16 import 'oauth2.dart' as oauth2; 16 import 'oauth2.dart' as oauth2;
17 import 'utils.dart'; 17 import 'utils.dart';
18 18
19 // TODO(nweiz): make this configurable 19 // TODO(nweiz): make this configurable
20 /// The amount of time in milliseconds to allow HTTP requests before assuming 20 /// The amount of time in milliseconds to allow HTTP requests before assuming
21 /// they've failed. 21 /// they've failed.
22 final HTTP_TIMEOUT = 30 * 1000; 22 final HTTP_TIMEOUT = 30 * 1000;
23 23
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 193
194 /// Exception thrown when an HTTP operation fails. 194 /// Exception thrown when an HTTP operation fails.
195 class PubHttpException implements Exception { 195 class PubHttpException implements Exception {
196 final http.Response response; 196 final http.Response response;
197 197
198 const PubHttpException(this.response); 198 const PubHttpException(this.response);
199 199
200 String toString() => 'HTTP error ${response.statusCode}: ' 200 String toString() => 'HTTP error ${response.statusCode}: '
201 '${response.reasonPhrase}'; 201 '${response.reasonPhrase}';
202 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698