| Index: third_party/WebCore/Modules/speech/SpeechRecognition.idl
|
| diff --git a/third_party/WebCore/Modules/speech/SpeechRecognition.idl b/third_party/WebCore/Modules/speech/SpeechRecognition.idl
|
| index 92a4bc0dcaa42065a69f49e9a48c7e28f43f260c..5fea70d27c137515e8163aaf4dcf6cefbb97e8d8 100644
|
| --- a/third_party/WebCore/Modules/speech/SpeechRecognition.idl
|
| +++ b/third_party/WebCore/Modules/speech/SpeechRecognition.idl
|
| @@ -51,5 +51,15 @@ module core {
|
| attribute EventListener onerror;
|
| attribute EventListener onstart;
|
| attribute EventListener onend;
|
| +
|
| + // EventTarget interface
|
| + void addEventListener(in DOMString type,
|
| + in EventListener listener,
|
| + in [Optional] boolean useCapture);
|
| + void removeEventListener(in DOMString type,
|
| + in EventListener listener,
|
| + in [Optional] boolean useCapture);
|
| + boolean dispatchEvent(in Event evt)
|
| + raises(EventException);
|
| };
|
| }
|
|
|