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

Unified Diff: third_party/WebCore/Modules/mediastream/RTCSessionDescription.idl

Issue 10911186: Roll WebKit IDL to multivm@858 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
Index: third_party/WebCore/Modules/mediastream/RTCSessionDescription.idl
diff --git a/third_party/WebCore/Modules/mediastream/SessionDescription.idl b/third_party/WebCore/Modules/mediastream/RTCSessionDescription.idl
similarity index 85%
copy from third_party/WebCore/Modules/mediastream/SessionDescription.idl
copy to third_party/WebCore/Modules/mediastream/RTCSessionDescription.idl
index d4afedad9f7c760752d443bc7484b75558406005..e84dea2ebdad72c762cc4f0a386483002ee7e0e5 100644
--- a/third_party/WebCore/Modules/mediastream/SessionDescription.idl
+++ b/third_party/WebCore/Modules/mediastream/RTCSessionDescription.idl
@@ -28,16 +28,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-module p2p {
+module mediastream {
interface [
Conditional=MEDIA_STREAM,
- Constructor(in DOMString sdp)
- ] SessionDescription {
- [StrictTypeChecking] void addCandidate(in IceCandidate candidate)
- raises(DOMException);
-
- DOMString toSdp();
+ Constructor(in Dictionary dictionary),
+ ConstructorRaisesException
+ ] RTCSessionDescription {
+ attribute DOMString type
+ setter raises(DOMException);
+ attribute DOMString sdp
+ setter raises(DOMException);
};
}

Powered by Google App Engine
This is Rietveld 408576698