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

Side by Side Diff: third_party/WebCore/Modules/speech/SpeechRecognition.idl

Issue 10117028: Roll WebCore IDL to multivm@418 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 attribute EventListener onspeechstart; 44 attribute EventListener onspeechstart;
45 attribute EventListener onspeechend; 45 attribute EventListener onspeechend;
46 attribute EventListener onsoundend; 46 attribute EventListener onsoundend;
47 attribute EventListener onaudioend; 47 attribute EventListener onaudioend;
48 attribute EventListener onresult; 48 attribute EventListener onresult;
49 attribute EventListener onnomatch; 49 attribute EventListener onnomatch;
50 attribute EventListener onresultdeleted; 50 attribute EventListener onresultdeleted;
51 attribute EventListener onerror; 51 attribute EventListener onerror;
52 attribute EventListener onstart; 52 attribute EventListener onstart;
53 attribute EventListener onend; 53 attribute EventListener onend;
54
55 // EventTarget interface
56 void addEventListener(in DOMString type,
57 in EventListener listener,
58 in [Optional] boolean useCapture);
59 void removeEventListener(in DOMString type,
60 in EventListener listener,
61 in [Optional] boolean useCapture);
62 boolean dispatchEvent(in Event evt)
63 raises(EventException);
54 }; 64 };
55 } 65 }
OLDNEW
« no previous file with comments | « third_party/WebCore/Modules/mediastream/LocalMediaStream.idl ('k') | third_party/WebCore/Modules/webaudio/AudioContext.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698