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

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: 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 MIME types.
mem 2013/08/26 13:48:55 perhaps give a brief description of what MIME type
7 *
8 * For information on installing and importing this library, see the
9 * [mime package on pub.dartlang.org]
10 * (http://pub.dartlang.org/packages/mime).
11 */
5 library mime; 12 library mime;
6 13
7 import 'dart:async'; 14 import 'dart:async';
8 import 'dart:typed_data'; 15 import 'dart:typed_data';
9 16
10 part 'src/mime_type.dart'; 17 part 'src/mime_type.dart';
11 part 'src/extension_map.dart'; 18 part 'src/extension_map.dart';
12 part 'src/magic_number.dart'; 19 part 'src/magic_number.dart';
13 part 'src/mime_multipart_transformer.dart'; 20 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