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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.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/presentation/PresentationConnectionAvailableEvent.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h b/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
index 33f9adf71b8e4d4cead8ddb05834eb629cef7cf7..9e284a5d4cbb96728a45cbefff8e61b2fd7ef927 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
@@ -21,10 +21,6 @@ class PresentationConnectionAvailableEvent final : public Event {
public:
~PresentationConnectionAvailableEvent() override;
- static PresentationConnectionAvailableEvent* create()
- {
- return new PresentationConnectionAvailableEvent;
- }
static PresentationConnectionAvailableEvent* create(const AtomicString& eventType, PresentationConnection* connection)
{
return new PresentationConnectionAvailableEvent(eventType, connection);
@@ -41,7 +37,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- PresentationConnectionAvailableEvent();
PresentationConnectionAvailableEvent(const AtomicString& eventType, PresentationConnection*);
PresentationConnectionAvailableEvent(const AtomicString& eventType, const PresentationConnectionAvailableEventInit& initializer);

Powered by Google App Engine
This is Rietveld 408576698