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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.cpp

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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/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
-

Powered by Google App Engine
This is Rietveld 408576698