Chromium Code Reviews| Index: utils/apidoc/html_diff.dart |
| diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart |
| index 22bbfb6f25e332d9cd6e3dc6188e9a6309260252..926d10f3245a52298e3cdc77030c55357606660e 100644 |
| --- a/utils/apidoc/html_diff.dart |
| +++ b/utils/apidoc/html_diff.dart |
| @@ -24,11 +24,11 @@ import '../../sdk/lib/html/html_common/metadata.dart'; |
| // TODO(amouravski): There is currently magic that looks at dart:* libraries |
| // rather than the declared library names. This changed due to recent syntax |
| // changes. We should only need to look at the library 'html'. |
| -const List<Uri> HTML_LIBRARY_URIS = const [ |
| - const Uri.fromComponents(scheme: 'dart', path: 'html'), |
| - const Uri.fromComponents(scheme: 'dart', path: 'indexed_db'), |
| - const Uri.fromComponents(scheme: 'dart', path: 'svg'), |
| - const Uri.fromComponents(scheme: 'dart', path: 'web_audio')]; |
| +List<Uri> HTML_LIBRARY_URIS = [ |
|
floitsch
2013/05/28 14:50:40
final
Søren Gjesse
2013/05/28 15:15:55
Done.
|
| + new Uri(scheme: 'dart', path: 'html'), |
| + new Uri(scheme: 'dart', path: 'indexed_db'), |
| + new Uri(scheme: 'dart', path: 'svg'), |
| + new Uri(scheme: 'dart', path: 'web_audio')]; |
| /** |
| * A class for computing a many-to-many mapping between the types and |