Chromium Code Reviews| Index: pkg/mime/lib/src/extension_map.dart |
| diff --git a/pkg/mime/lib/src/extension_map.dart b/pkg/mime/lib/src/extension_map.dart |
| index 745556b540b0954e799295609549877575a9dd10..9bc097b8f6a9052fe752009f3121e3d6e42cb072 100644 |
| --- a/pkg/mime/lib/src/extension_map.dart |
| +++ b/pkg/mime/lib/src/extension_map.dart |
| @@ -2,11 +2,10 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| -part of mime; |
| - |
| +library mime.extension_map; |
| // TODO(ajohnsen): Use sorted list and binary search? |
| -const Map<String, String> _DEFAULT_EXTENSION_MAP = const <String, String>{ |
| +const Map<String, String> EXTENSION_MAP = const <String, String>{ |
|
Anders Johnsen
2014/05/12 06:23:18
Please keep the DEFAULT_
kevmoo
2014/05/12 14:45:18
Done, and renamed file to align
|
| '123':'application/vnd.lotus-1-2-3', |
| '3dml':'text/vnd.in3d.3dml', |
| '3ds':'image/x-3ds', |