| Index: tools/dom/scripts/generator.py
|
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
|
| index 28d5ad46dc338b686aa77d74e2b9c5676f8337bb..ed036992e9113b2821eea276c6ab77a4feaa1c4b 100644
|
| --- a/tools/dom/scripts/generator.py
|
| +++ b/tools/dom/scripts/generator.py
|
| @@ -634,6 +634,18 @@ _history_annotations = [
|
| # INTERFACE: annotations to be added to the interface declaration
|
| # INTERFACE.MEMBER: annotation to be added to the member declaration
|
| dart_annotations = {
|
| + 'ArrayBuffer': [
|
| + "@SupportedBrowser(SupportedBrowser.CHROME)",
|
| + "@SupportedBrowser(SupportedBrowser.FIREFOX)",
|
| + "@SupportedBrowser(SupportedBrowser.IE, '10')",
|
| + "@SupportedBrowser(SupportedBrowser.SAFARI)",
|
| + ],
|
| + 'ArrayBufferView': [
|
| + "@SupportedBrowser(SupportedBrowser.CHROME)",
|
| + "@SupportedBrowser(SupportedBrowser.FIREFOX)",
|
| + "@SupportedBrowser(SupportedBrowser.IE, '10')",
|
| + "@SupportedBrowser(SupportedBrowser.SAFARI)",
|
| + ],
|
| 'DOMWindow.indexedDB': _indexed_db_annotations,
|
| 'History.pushState': _history_annotations,
|
| 'History.replaceState': _history_annotations,
|
|
|