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 a686f0cd7a88166dfbbe9eb172483ac0f6f84a7f..723136778f7bd882cfaf496cf26ad222e94fd66b 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/PaymentAppRequestData.h" |
+#include "modules/payments/PaymentAppRequest.h" |
#include "modules/serviceworkers/ExtendableEvent.h" |
#include "platform/heap/Handle.h" |
@@ -22,22 +22,22 @@ class MODULES_EXPORT PaymentRequestEvent final : public ExtendableEvent { |
public: |
static PaymentRequestEvent* create(const AtomicString& type, |
- const PaymentAppRequestData&, |
+ const PaymentAppRequest&, |
WaitUntilObserver*); |
~PaymentRequestEvent() override; |
const AtomicString& interfaceName() const override; |
- void data(PaymentAppRequestData&) const; |
+ void appRequest(PaymentAppRequest&) const; |
void respondWith(ScriptPromise); |
DECLARE_VIRTUAL_TRACE(); |
private: |
PaymentRequestEvent(const AtomicString& type, |
- const PaymentAppRequestData&, |
+ const PaymentAppRequest&, |
WaitUntilObserver*); |
- PaymentAppRequestData m_data; |
+ PaymentAppRequest m_appRequest; |
}; |
} // namespace blink |