| Index: utils/apidoc/html_diff.dart
|
| diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
|
| index cc37f9f93437ba25573bf4f78c2d24e811f8b372..f39cb12018f755f02276e40b461d3aa9f96deab1 100644
|
| --- a/utils/apidoc/html_diff.dart
|
| +++ b/utils/apidoc/html_diff.dart
|
| @@ -18,8 +18,14 @@ import '../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.dar
|
| // 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<String> HTML_LIBRARY_NAMES = const ['dart:html', 'dart:svg'];
|
| -const List<String> HTML_DECLARED_NAMES = const ['html', 'svg'];
|
| +const List<String> HTML_LIBRARY_NAMES = const [
|
| + 'dart:html',
|
| + 'dart:svg',
|
| + 'dart:web_audio'];
|
| +const List<String> HTML_DECLARED_NAMES = const [
|
| + 'html',
|
| + 'svg',
|
| + 'web_audio'];
|
|
|
| /**
|
| * A class for computing a many-to-many mapping between the types and
|
|
|