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

Unified Diff: third_party/WebCore/Modules/mediastream/RTCIceCandidate.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/RTCIceCandidate.idl
diff --git a/third_party/WebCore/Modules/mediastream/IceCallback.idl b/third_party/WebCore/Modules/mediastream/RTCIceCandidate.idl
similarity index 85%
copy from third_party/WebCore/Modules/mediastream/IceCallback.idl
copy to third_party/WebCore/Modules/mediastream/RTCIceCandidate.idl
index 69d646f203a22cf4f2748f6adf9f1a4f27c1709b..460db03f4c5fc79477d595755cd85d0bb41d8b9a 100644
--- a/third_party/WebCore/Modules/mediastream/IceCallback.idl
+++ b/third_party/WebCore/Modules/mediastream/RTCIceCandidate.idl
@@ -28,13 +28,16 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-module p2p {
+module mediastream {
interface [
Conditional=MEDIA_STREAM,
- Callback
- ] IceCallback {
- boolean handleEvent(in IceCandidate candidate, in boolean moreToFollow, in PeerConnection00 source);
+ Constructor(in Dictionary dictionary),
+ ConstructorRaisesException
+ ] RTCIceCandidate {
+ readonly attribute DOMString candidate;
+ readonly attribute DOMString sdpMid;
+ readonly attribute unsigned short sdpMLineIndex;
};
}

Powered by Google App Engine
This is Rietveld 408576698