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

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

Issue 23419003: mime library description (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: flesh out description, link to more info Created 7 years, 3 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 | « no previous file | no next file » | 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) 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 /**
6 * Help for working with file format identifiers
7 * such as `text/html` and `image/png`.
8 *
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).
11 * For information on installing and importing this library, see the
12 * [mime package on pub.dartlang.org]
13 * (http://pub.dartlang.org/packages/mime).
14 */
5 library mime; 15 library mime;
6 16
7 import 'dart:async'; 17 import 'dart:async';
8 import 'dart:typed_data'; 18 import 'dart:typed_data';
9 19
10 part 'src/mime_type.dart'; 20 part 'src/mime_type.dart';
11 part 'src/extension_map.dart'; 21 part 'src/extension_map.dart';
12 part 'src/magic_number.dart'; 22 part 'src/magic_number.dart';
13 part 'src/mime_multipart_transformer.dart'; 23 part 'src/mime_multipart_transformer.dart';
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698