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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDTMFToneChangeEvent.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/RTCDTMFToneChangeEvent.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDTMFToneChangeEvent.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCDTMFToneChangeEvent.cpp
index f0fdc101a900366af39851adb798f551c698e8ef..994c8baf62775cd59bb12b7a4ce2ad768c023b33 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDTMFToneChangeEvent.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDTMFToneChangeEvent.cpp
@@ -27,11 +27,6 @@
namespace blink {
-RTCDTMFToneChangeEvent* RTCDTMFToneChangeEvent::create()
-{
- return new RTCDTMFToneChangeEvent;
-}
-
RTCDTMFToneChangeEvent* RTCDTMFToneChangeEvent::create(const String& tone)
{
return new RTCDTMFToneChangeEvent(tone);
@@ -43,10 +38,6 @@ RTCDTMFToneChangeEvent* RTCDTMFToneChangeEvent::create(const AtomicString& type,
return new RTCDTMFToneChangeEvent(initializer);
}
-RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent()
-{
-}
-
RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone)
: Event(EventTypeNames::tonechange, false, false)
, m_tone(tone)
@@ -80,4 +71,3 @@ DEFINE_TRACE(RTCDTMFToneChangeEvent)
}
} // namespace blink
-

Powered by Google App Engine
This is Rietveld 408576698