| Index: tools/dom/scripts/dartmetadata.py
|
| diff --git a/tools/dom/scripts/dartmetadata.py b/tools/dom/scripts/dartmetadata.py
|
| index a86424fa098766f35e89b3fd2a76976354873a26..639b13f6a89ee4d9e216ab05c57a48095c6e13ea 100644
|
| --- a/tools/dom/scripts/dartmetadata.py
|
| +++ b/tools/dom/scripts/dartmetadata.py
|
| @@ -427,6 +427,8 @@ _webgl_annotations = [
|
| "@Experimental()",
|
| ]
|
|
|
| +_web_audio_annotations = _webgl_annotations
|
| +
|
| _webkit_experimental_annotations = [
|
| "@SupportedBrowser(SupportedBrowser.CHROME)",
|
| "@SupportedBrowser(SupportedBrowser.SAFARI)",
|
| @@ -450,6 +452,8 @@ _annotations = monitored.Dict('dartmetadata._annotations', {
|
| "@SupportedBrowser(SupportedBrowser.OPERA)",
|
| "@SupportedBrowser(SupportedBrowser.SAFARI)",
|
| ],
|
| + 'AudioBufferSourceNode': _web_audio_annotations,
|
| + 'AudioContext': _web_audio_annotations,
|
| 'DOMFileSystem': _file_system_annotations,
|
| 'DOMFileSystemSync': _file_system_annotations,
|
| 'WebKitPoint': _webkit_experimental_annotations,
|
|
|