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

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

Issue 2898223002: PaymentHandler: Rename PaymentAppRequest with PaymentRequestEventData. (Closed)
Patch Set: Rename Created 3 years, 7 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/PaymentRequestEvent.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h b/third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h
index bac4817c076bda492221d7db42decdf4cd88d855..42be7d1596a5a20e22e4bdfaae8570250abf82ae 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h
@@ -6,7 +6,7 @@
#define PaymentRequestEvent_h
#include "modules/EventModules.h"
-#include "modules/payments/PaymentAppRequest.h"
+#include "modules/payments/PaymentRequestEventInit.h"
#include "modules/serviceworkers/ExtendableEvent.h"
#include "platform/heap/Handle.h"
@@ -24,7 +24,7 @@ class MODULES_EXPORT PaymentRequestEvent final : public ExtendableEvent {
public:
static PaymentRequestEvent* Create(const AtomicString& type,
- const PaymentAppRequest&,
+ const PaymentRequestEventInit&,
RespondWithObserver*,
WaitUntilObserver*);
~PaymentRequestEvent() override;
@@ -46,7 +46,7 @@ class MODULES_EXPORT PaymentRequestEvent final : public ExtendableEvent {
private:
PaymentRequestEvent(const AtomicString& type,
- const PaymentAppRequest&,
+ const PaymentRequestEventInit&,
RespondWithObserver*,
WaitUntilObserver*);

Powered by Google App Engine
This is Rietveld 408576698