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

Side by Side Diff: lib/html/doc/interface/DeprecatedPeerConnection.dartdoc

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
« no previous file with comments | « lib/html/doc/interface/DelayNode.dartdoc ('k') | lib/html/doc/interface/DetailsElement.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName DeprecatedPeerConnection
10 interface DeprecatedPeerConnection extends EventTarget default _DeprecatedPeerCo nnectionFactoryProvider {
11
12 DeprecatedPeerConnection(String serverConfiguration, SignalingCallback signali ngCallback);
13
14 /**
15 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
16 */
17 DeprecatedPeerConnectionEvents get on();
18
19 static final int ACTIVE = 2;
20
21 static final int CLOSED = 3;
22
23 static final int NEGOTIATING = 1;
24
25 static final int NEW = 0;
26
27 /** @domName DeprecatedPeerConnection.localStreams */
28 final MediaStreamList localStreams;
29
30 /** @domName DeprecatedPeerConnection.readyState */
31 final int readyState;
32
33 /** @domName DeprecatedPeerConnection.remoteStreams */
34 final MediaStreamList remoteStreams;
35
36 /** @domName DeprecatedPeerConnection.addEventListener */
37 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]);
38
39 /** @domName DeprecatedPeerConnection.addStream */
40 void addStream(MediaStream stream);
41
42 /** @domName DeprecatedPeerConnection.close */
43 void close();
44
45 /** @domName DeprecatedPeerConnection.dispatchEvent */
46 bool $dom_dispatchEvent(Event event);
47
48 /** @domName DeprecatedPeerConnection.processSignalingMessage */
49 void processSignalingMessage(String message);
50
51 /** @domName DeprecatedPeerConnection.removeEventListener */
52 void $dom_removeEventListener(String type, EventListener listener, [bool useCa pture]);
53
54 /** @domName DeprecatedPeerConnection.removeStream */
55 void removeStream(MediaStream stream);
56
57 /** @domName DeprecatedPeerConnection.send */
58 void send(String text);
59 }
60
61 interface DeprecatedPeerConnectionEvents extends Events {
62
63 EventListenerList get addStream();
64
65 EventListenerList get connecting();
66
67 EventListenerList get message();
68
69 EventListenerList get open();
70
71 EventListenerList get removeStream();
72
73 EventListenerList get stateChange();
74 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/DelayNode.dartdoc ('k') | lib/html/doc/interface/DetailsElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698