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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEvent.h

Issue 2216593002: Drop document.createEvent support for things still behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@createEvent
Patch Set: fix LayoutTests 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/payments/PaymentRequestUpdateEvent.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEvent.h b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEvent.h
index 7fa68947f9b2458b77957b1aefac7c1e768fffdd..69162dc0284fff62f8a214e56dba8b1be863dc1b 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEvent.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEvent.h
@@ -25,7 +25,6 @@ class MODULES_EXPORT PaymentRequestUpdateEvent final : public Event {
public:
~PaymentRequestUpdateEvent() override;
- static PaymentRequestUpdateEvent* create();
static PaymentRequestUpdateEvent* create(const AtomicString& type, const PaymentRequestUpdateEventInit& = PaymentRequestUpdateEventInit());
void setPaymentDetailsUpdater(PaymentUpdater*);
@@ -37,7 +36,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- PaymentRequestUpdateEvent();
PaymentRequestUpdateEvent(const AtomicString& type, const PaymentRequestUpdateEventInit&);
Member<PaymentUpdater> m_updater;

Powered by Google App Engine
This is Rietveld 408576698