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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnectionCloseEvent.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/PresentationConnectionCloseEvent.h
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCloseEvent.h b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCloseEvent.h
index fcbc103fce84c16bb0d26d20bb8bd4322a19969d..13623fbce8ef358b5add5f3c071415a3d31570c2 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCloseEvent.h
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCloseEvent.h
@@ -20,11 +20,6 @@ class PresentationConnectionCloseEvent final : public Event {
public:
~PresentationConnectionCloseEvent() override = default;
- static PresentationConnectionCloseEvent* create()
- {
- return new PresentationConnectionCloseEvent;
- }
-
static PresentationConnectionCloseEvent* create(const AtomicString& eventType, const String& reason, const String& message)
{
return new PresentationConnectionCloseEvent(eventType, reason, message);
@@ -43,7 +38,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- PresentationConnectionCloseEvent() = default;
PresentationConnectionCloseEvent(const AtomicString& eventType, const String& reason, const String& message);
PresentationConnectionCloseEvent(const AtomicString& eventType, const PresentationConnectionCloseEventInit& initializer);

Powered by Google App Engine
This is Rietveld 408576698