Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Unified Diff: modules/speech/SpeechSynthesis.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/speech/SpeechRecognition.idl ('k') | modules/speech/SpeechSynthesisEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/speech/SpeechSynthesis.idl
diff --git a/modules/speech/SpeechSynthesis.idl b/modules/speech/SpeechSynthesis.idl
index 4fa847a3399f97f54a2585e272e657274143629c..a88e4968efebd4820bfff8142bc1d8ed3f923ac8 100644
--- a/modules/speech/SpeechSynthesis.idl
+++ b/modules/speech/SpeechSynthesis.idl
@@ -25,15 +25,17 @@
[
NoInterfaceObject,
- EnabledAtRuntime=SpeechSynthesis
-] interface SpeechSynthesis {
+ RuntimeEnabled=SpeechSynthesis
+] interface SpeechSynthesis : EventTarget {
readonly attribute boolean pending;
readonly attribute boolean speaking;
readonly attribute boolean paused;
- void speak(SpeechSynthesisUtterance utterance);
+ [RaisesException] void speak(SpeechSynthesisUtterance utterance);
void cancel();
void pause();
void resume();
sequence<SpeechSynthesisVoice> getVoices();
+
+ attribute EventHandler onvoiceschanged;
};
« no previous file with comments | « modules/speech/SpeechRecognition.idl ('k') | modules/speech/SpeechSynthesisEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698