| Index: tools/dom/scripts/generator.py
|
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
|
| index 8237133d9fe292146e7c27eee0ca41b9d67556a2..8fa13f64ba2b4eb14342eff5adca411ce5d162e6 100644
|
| --- a/tools/dom/scripts/generator.py
|
| +++ b/tools/dom/scripts/generator.py
|
| @@ -692,6 +692,11 @@ _performance_annotations = [
|
| "@SupportedBrowser(SupportedBrowser.IE)",
|
| ]
|
|
|
| +_speech_recognition_annotations = [
|
| + "@SupportedBrowser(SupportedBrowser.CHROME, '25')",
|
| + "@Experimental()",
|
| +]
|
| +
|
| # Annotations to be placed on generated members.
|
| # The table is indexed as:
|
| # INTERFACE: annotations to be added to the interface declaration
|
| @@ -770,6 +775,11 @@ dart_annotations = {
|
| "@SupportedBrowser(SupportedBrowser.CHROME, '25')",
|
| "@Experimental()",
|
| ],
|
| + 'SpeechRecognition': _speech_recognition_annotations,
|
| + 'SpeechRecognitionAlternative': _speech_recognition_annotations,
|
| + 'SpeechRecognitionError': _speech_recognition_annotations,
|
| + 'SpeechRecognitionEvent': _speech_recognition_annotations,
|
| + 'SpeechRecognitionResult': _speech_recognition_annotations,
|
| 'WebSocket': _all_but_ie9_annotations,
|
| 'WorkerContext.indexedDB': _indexed_db_annotations,
|
| 'WorkerContext.webkitRequestFileSystem': _file_system_annotations,
|
|
|