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

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

Issue 10983049: Roll IDL to multivm@910 (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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 close() 75 void close()
76 raises(DOMException); 76 raises(DOMException);
77 77
78 attribute EventListener onnegotiationneeded;
78 attribute EventListener onicecandidate; 79 attribute EventListener onicecandidate;
79 attribute EventListener onopen; 80 attribute EventListener onopen;
80 attribute EventListener onstatechange; 81 attribute EventListener onstatechange;
81 attribute EventListener onaddstream; 82 attribute EventListener onaddstream;
82 attribute EventListener onremovestream; 83 attribute EventListener onremovestream;
83 attribute EventListener onicechange; 84 attribute EventListener onicechange;
84 85
85 // EventTarget interface 86 // EventTarget interface
86 void addEventListener(in DOMString type, 87 void addEventListener(in DOMString type,
87 in EventListener listener, 88 in EventListener listener,
88 in [Optional] boolean useCapture); 89 in [Optional] boolean useCapture);
89 void removeEventListener(in DOMString type, 90 void removeEventListener(in DOMString type,
90 in EventListener listener, 91 in EventListener listener,
91 in [Optional] boolean useCapture); 92 in [Optional] boolean useCapture);
92 boolean dispatchEvent(in Event event) 93 boolean dispatchEvent(in Event event)
93 raises(EventException); 94 raises(EventException);
94 }; 95 };
95 96
96 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698