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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.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/RTCIceCandidateEvent.h
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
index c201ed7f357e3033c4282494062aeb6c08eb6c42..70e01a766936de38aa99f7f59bb9d39ac3b92c9f 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
@@ -36,7 +36,6 @@ class RTCIceCandidateEvent final : public Event {
public:
~RTCIceCandidateEvent() override;
- static RTCIceCandidateEvent* create();
static RTCIceCandidateEvent* create(bool canBubble, bool cancelable, RTCIceCandidate*);
RTCIceCandidate* candidate() const;
@@ -46,7 +45,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- RTCIceCandidateEvent();
RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
Member<RTCIceCandidate> m_candidate;

Powered by Google App Engine
This is Rietveld 408576698