[webrtc-pc] RTCPeerConnectionState is a better home for "closed" than RTCSignalingState is

adam-be has just created a new issue for 
https://github.com/w3c/webrtc-pc:

== RTCPeerConnectionState is a better home for "closed" than 
RTCSignalingState is ==
enum RTCSignalingState {
    "stable",
    "have-local-offer",
    "have-remote-offer",
    "have-local-pranswer",
    "have-remote-pranswer",
    "closed" // <-- do I belong here?
};

enum RTCPeerConnectionState {
    "new",
    "connecting",
    "connected",
    "disconnected",
    "failed"
};

Please view or discuss this issue at 
https://github.com/w3c/webrtc-pc/issues/530 using your GitHub account

Received on Wednesday, 2 March 2016 15:24:48 UTC