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

Unified Diff: third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.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/app_banner/BeforeInstallPromptEvent.h
diff --git a/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h b/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
index dcc5bbe58eb3e2eaeae768f9bc2cb6134f59e86c..403349f60b0ad88662146bc8295e0fb5b3eb3a79 100644
--- a/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
+++ b/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
@@ -24,12 +24,6 @@ class BeforeInstallPromptEvent final : public Event {
public:
~BeforeInstallPromptEvent() override;
- // For EventModules.cpp
- static BeforeInstallPromptEvent* create()
- {
- return new BeforeInstallPromptEvent();
- }
-
static BeforeInstallPromptEvent* create(const AtomicString& name, ExecutionContext* executionContext, const Vector<String>& platforms, int requestId, WebAppBannerClient* client)
{
return new BeforeInstallPromptEvent(name, executionContext, platforms, requestId, client);
@@ -50,7 +44,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- BeforeInstallPromptEvent();
BeforeInstallPromptEvent(const AtomicString& name, ExecutionContext*, const Vector<String>& platforms, int requestId, WebAppBannerClient*);
BeforeInstallPromptEvent(const AtomicString& name, const BeforeInstallPromptEventInit&);

Powered by Google App Engine
This is Rietveld 408576698