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

Side by Side Diff: third_party/WebCore/Modules/mediastream/RTCPeerConnection.idl

Issue 11098032: Roll IDL to multivm@937 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 readonly attribute DOMString iceState; 65 readonly attribute DOMString iceState;
66 66
67 readonly attribute MediaStreamList localStreams; 67 readonly attribute MediaStreamList localStreams;
68 readonly attribute MediaStreamList remoteStreams; 68 readonly attribute MediaStreamList remoteStreams;
69 69
70 [StrictTypeChecking] void addStream(in MediaStream stream, in [Optional= DefaultIsUndefined] Dictionary mediaConstraints) 70 [StrictTypeChecking] void addStream(in MediaStream stream, in [Optional= DefaultIsUndefined] Dictionary mediaConstraints)
71 raises(DOMException); 71 raises(DOMException);
72 [StrictTypeChecking] void removeStream(in MediaStream stream) 72 [StrictTypeChecking] void removeStream(in MediaStream stream)
73 raises(DOMException); 73 raises(DOMException);
74 74
75 void getStats(in [Callback] RTCStatsCallback successCallback, in [Option al=DefaultIsUndefined] MediaStreamTrack selector);
76
75 void close() 77 void close()
76 raises(DOMException); 78 raises(DOMException);
77 79
78 attribute EventListener onnegotiationneeded; 80 attribute EventListener onnegotiationneeded;
79 attribute EventListener onicecandidate; 81 attribute EventListener onicecandidate;
80 attribute EventListener onopen; 82 attribute EventListener onopen;
81 attribute EventListener onstatechange; 83 attribute EventListener onstatechange;
82 attribute EventListener onaddstream; 84 attribute EventListener onaddstream;
83 attribute EventListener onremovestream; 85 attribute EventListener onremovestream;
84 attribute EventListener onicechange; 86 attribute EventListener onicechange;
85 87
86 // EventTarget interface 88 // EventTarget interface
87 void addEventListener(in DOMString type, 89 void addEventListener(in DOMString type,
88 in EventListener listener, 90 in EventListener listener,
89 in [Optional] boolean useCapture); 91 in [Optional] boolean useCapture);
90 void removeEventListener(in DOMString type, 92 void removeEventListener(in DOMString type,
91 in EventListener listener, 93 in EventListener listener,
92 in [Optional] boolean useCapture); 94 in [Optional] boolean useCapture);
93 boolean dispatchEvent(in Event event) 95 boolean dispatchEvent(in Event event)
94 raises(EventException); 96 raises(EventException);
95 }; 97 };
96 98
97 } 99 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | third_party/WebCore/Modules/mediastream/RTCStatsCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698