Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ongathererstatechange vs onstatechange #475

Closed
robin-raymond opened this issue Apr 19, 2016 · 3 comments
Closed

ongathererstatechange vs onstatechange #475

robin-raymond opened this issue Apr 19, 2016 · 3 comments

Comments

@robin-raymond
Copy link
Contributor

WebRTC names these events with ongathererstatechange vs just onstatechange because these all hang off a bigger peer connection object. ORTC however does not.

This should change from:

partial interface RTCIceGatherer : RTCStatsProvider {
                    attribute EventHandler?       ongathererstatechange;
}

To:

partial interface RTCIceGatherer : RTCStatsProvider {
                    attribute EventHandler?       onstatechange;
}
@ibc
Copy link
Contributor

ibc commented Apr 19, 2016

Sure.

@robin-raymond
Copy link
Contributor Author

Change:

partial interface RTCIceTransport : RTCStatsProvider {
                    attribute EventHandler?        onicestatechange;
}

partial interface RTCDtlsTransport : RTCStatsProvider  {
}

To:

partial interface RTCIceTransport : RTCStatsProvider {
                    attribute EventHandler?        onstatechange;
}

partial interface RTCDtlsTransport : RTCStatsProvider  {
                    attribute EventHandler?        onstatechange;
}

@robin-raymond
Copy link
Contributor Author

Yes, that PR fixes. Merged + closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants