| Index: third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp
|
| index 555582126be9c23c7be1d0d5b2e66e343da6ecde..56ba455b909f5ded019c25dbc84cd7dde7466b32 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp
|
| @@ -28,20 +28,11 @@
|
|
|
| namespace blink {
|
|
|
| -RTCIceCandidateEvent* RTCIceCandidateEvent::create()
|
| -{
|
| - return new RTCIceCandidateEvent;
|
| -}
|
| -
|
| RTCIceCandidateEvent* RTCIceCandidateEvent::create(bool canBubble, bool cancelable, RTCIceCandidate* candidate)
|
| {
|
| return new RTCIceCandidateEvent(canBubble, cancelable, candidate);
|
| }
|
|
|
| -RTCIceCandidateEvent::RTCIceCandidateEvent()
|
| -{
|
| -}
|
| -
|
| RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate* candidate)
|
| : Event(EventTypeNames::icecandidate, canBubble, cancelable)
|
| , m_candidate(candidate)
|
| @@ -69,4 +60,3 @@ DEFINE_TRACE(RTCIceCandidateEvent)
|
| }
|
|
|
| } // namespace blink
|
| -
|
|
|