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

Side by Side Diff: lib/html/doc/interface/SpeechRecognition.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 /// @domName SpeechRecognition
8 interface SpeechRecognition extends EventTarget default _SpeechRecognitionFactor yProvider {
9
10 SpeechRecognition();
11
12 /**
13 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
14 */
15 SpeechRecognitionEvents get on();
16
17 /** @domName SpeechRecognition.continuous */
18 bool continuous;
19
20 /** @domName SpeechRecognition.grammars */
21 SpeechGrammarList grammars;
22
23 /** @domName SpeechRecognition.lang */
24 String lang;
25
26 /** @domName SpeechRecognition.abort */
27 void abort();
28
29 /** @domName SpeechRecognition.addEventListener */
30 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]);
31
32 /** @domName SpeechRecognition.dispatchEvent */
33 bool $dom_dispatchEvent(Event evt);
34
35 /** @domName SpeechRecognition.removeEventListener */
36 void $dom_removeEventListener(String type, EventListener listener, [bool useCa pture]);
37
38 /** @domName SpeechRecognition.start */
39 void start();
40
41 /** @domName SpeechRecognition.stop */
42 void stop();
43 }
44
45 interface SpeechRecognitionEvents extends Events {
46
47 EventListenerList get audioEnd();
48
49 EventListenerList get audioStart();
50
51 EventListenerList get end();
52
53 EventListenerList get error();
54
55 EventListenerList get noMatch();
56
57 EventListenerList get result();
58
59 EventListenerList get resultDeleted();
60
61 EventListenerList get soundEnd();
62
63 EventListenerList get soundStart();
64
65 EventListenerList get speechEnd();
66
67 EventListenerList get speechStart();
68
69 EventListenerList get start();
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698