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

Side by Side Diff: pkg/mime/lib/mime.dart

Issue 272353002: pkg/mime: layout as mini-libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: cl nits, other fixes Created 6 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 /** 5 /**
6 * Help for working with file format identifiers 6 * Help for working with file format identifiers
7 * such as `text/html` and `image/png`. 7 * such as `text/html` and `image/png`.
8 * 8 *
9 * More details, including a list of types, are in the Wikipedia article 9 * More details, including a list of types, are in the Wikipedia article
10 * [Internet media type](http://en.wikipedia.org/wiki/Internet_media_type). 10 * [Internet media type](http://en.wikipedia.org/wiki/Internet_media_type).
11 * For information on installing and importing this library, see the 11 * For information on installing and importing this library, see the
12 * [mime package on pub.dartlang.org] 12 * [mime package on pub.dartlang.org]
13 * (http://pub.dartlang.org/packages/mime). 13 * (http://pub.dartlang.org/packages/mime).
14 */ 14 */
15 library mime; 15 library mime;
16 16
17 import 'dart:async'; 17 export 'src/mime_multipart_transformer.dart';
18 import 'dart:convert'; 18 export 'src/mime_type.dart';
19 import 'dart:typed_data';
20
21 part 'src/mime_type.dart';
22 part 'src/extension_map.dart';
23 part 'src/magic_number.dart';
24 part 'src/mime_multipart_transformer.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/mime/lib/src/default_extension_map.dart » ('j') | pkg/mime/lib/src/default_extension_map.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698