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

Side by Side Diff: pkg/http/lib/src/response.dart

Issue 14914002: Change fromString constructor to parse static method (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed additional tests Created 7 years, 7 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
« no previous file with comments | « pkg/http/lib/src/request.dart ('k') | pkg/http/test/multipart_test.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 response; 5 library response;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 /// Returns the encoding to use for a response with the given headers. This 82 /// Returns the encoding to use for a response with the given headers. This
83 /// defaults to [Encoding.ISO_8859_1] if the headers don't specify a charset or 83 /// defaults to [Encoding.ISO_8859_1] if the headers don't specify a charset or
84 /// if that charset is unknown. 84 /// if that charset is unknown.
85 Encoding _encodingForHeaders(Map<String, String> headers) => 85 Encoding _encodingForHeaders(Map<String, String> headers) =>
86 encodingForCharset(_contentTypeForHeaders(headers).charset); 86 encodingForCharset(_contentTypeForHeaders(headers).charset);
87 87
88 /// Returns the [ContentType] object for the given headers. Defaults to 88 /// Returns the [ContentType] object for the given headers. Defaults to
89 /// `application/octet-stream`. 89 /// `application/octet-stream`.
90 ContentType _contentTypeForHeaders(Map<String, String> headers) { 90 ContentType _contentTypeForHeaders(Map<String, String> headers) {
91 var contentType = headers[HttpHeaders.CONTENT_TYPE]; 91 var contentType = headers[HttpHeaders.CONTENT_TYPE];
92 if (contentType != null) return new ContentType.fromString(contentType); 92 if (contentType != null) return ContentType.parse(contentType);
93 return new ContentType("application", "octet-stream"); 93 return new ContentType("application", "octet-stream");
94 } 94 }
OLDNEW
« no previous file with comments | « pkg/http/lib/src/request.dart ('k') | pkg/http/test/multipart_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698