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

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

Issue 2665583002: PaymentApp: Rename PaymentAppRequestData to PaymentAppRequest. (Closed)
Patch Set: PaymentApp: Rename PaymentAppRequestData to PaymentAppRequest. Created 3 years, 11 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 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

Powered by Google App Engine
This is Rietveld 408576698