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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.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/RTCDataChannelEvent.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.cpp
index fb687078e0823b01c12c4263d0f49f703148ae43..ca78c27d34b69cf58e3404393e664914a39eb7c3 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.cpp
@@ -26,21 +26,11 @@
namespace blink {
-RTCDataChannelEvent* RTCDataChannelEvent::create()
-{
- return new RTCDataChannelEvent;
-}
-
RTCDataChannelEvent* RTCDataChannelEvent::create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel)
{
return new RTCDataChannelEvent(type, canBubble, cancelable, channel);
}
-
-RTCDataChannelEvent::RTCDataChannelEvent()
-{
-}
-
RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel* channel)
: Event(type, canBubble, cancelable)
, m_channel(channel)

Powered by Google App Engine
This is Rietveld 408576698