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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h

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.h
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
index 1fe7f5879317f6022fc6679ec75f32278d03b18f..d3d1bea2d194b5705e4423a5f5656c6e5fc64f47 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
@@ -36,7 +36,6 @@ class RTCDataChannelEvent final : public Event {
public:
~RTCDataChannelEvent() override;
- static RTCDataChannelEvent* create();
static RTCDataChannelEvent* create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
RTCDataChannel* channel() const;
@@ -46,7 +45,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- RTCDataChannelEvent();
RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
Member<RTCDataChannel> m_channel;

Powered by Google App Engine
This is Rietveld 408576698