Chromium Code Reviews| Index: tools/dom/scripts/generator.py |
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py |
| index ad36286c9028bb6613c1e0c623b24247c415f2de..daba677a752015040ba2b64b3dc0222486069283 100644 |
| --- a/tools/dom/scripts/generator.py |
| +++ b/tools/dom/scripts/generator.py |
| @@ -655,6 +655,13 @@ _performance_annotations = [ |
| dart_annotations = { |
| 'ArrayBuffer': _all_but_ie9_annotations, |
| 'ArrayBufferView': _all_but_ie9_annotations, |
| + 'DOMApplicationCache': [ |
| + "@SupportedBrowser(SupportedBrowser.CHROME)", |
| + "@SupportedBrowser(SupportedBrowser.FIREFOX)", |
| + "@SupportedBrowser(SupportedBrowser.IE, '10')", |
| + "@SupportedBrowser(SupportedBrowser.OPERA)", |
|
Emily Fortuna
2013/01/15 02:23:07
this is picky, but we should probably rename this
blois
2013/01/15 18:24:34
I'd like to postpone all Opera stuff until later i
|
| + "@SupportedBrowser(SupportedBrowser.SAFARI)", |
| + ], |
| 'DOMWindow.indexedDB': _indexed_db_annotations, |
| 'DOMWindow.performance': _performance_annotations, |
| 'DOMWindow.webkitRequestFileSystem': _file_system_annotations, |