/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_dom_PaymentActionRequest_h #define mozilla_dom_PaymentActionRequest_h #include "nsIPaymentActionRequest.h" #include "nsCOMPtr.h" #include "nsIArray.h" #include "nsString.h" namespace mozilla { namespace dom { class PaymentActionRequest : public nsIPaymentActionRequest { public: NS_DECL_ISUPPORTS NS_DECL_NSIPAYMENTACTIONREQUEST PaymentActionRequest(); protected: virtual ~PaymentActionRequest() = default; nsString mRequestId; uint32_t mType; nsCOMPtr mCallback; }; class PaymentCreateActionRequest final : public nsIPaymentCreateActionRequest , public PaymentActionRequest { public: NS_DECL_ISUPPORTS_INHERITED NS_FORWARD_NSIPAYMENTACTIONREQUEST(PaymentActionRequest::) NS_DECL_NSIPAYMENTCREATEACTIONREQUEST PaymentCreateActionRequest(); private: ~PaymentCreateActionRequest() = default; uint64_t mTabId; nsCOMPtr mTopLevelPrincipal; nsCOMPtr mMethodData; nsCOMPtr mDetails; nsCOMPtr mOptions; nsString mShippingOption; }; class PaymentCompleteActionRequest final : public nsIPaymentCompleteActionRequest , public PaymentActionRequest { public: NS_DECL_ISUPPORTS_INHERITED NS_FORWARD_NSIPAYMENTACTIONREQUEST(PaymentActionRequest::) NS_DECL_NSIPAYMENTCOMPLETEACTIONREQUEST PaymentCompleteActionRequest(); private: ~PaymentCompleteActionRequest() = default; nsString mCompleteStatus; }; class PaymentUpdateActionRequest final : public nsIPaymentUpdateActionRequest , public PaymentActionRequest { public: NS_DECL_ISUPPORTS_INHERITED NS_FORWARD_NSIPAYMENTACTIONREQUEST(PaymentActionRequest::) NS_DECL_NSIPAYMENTUPDATEACTIONREQUEST PaymentUpdateActionRequest() = default; private: ~PaymentUpdateActionRequest() = default; nsCOMPtr mDetails; nsString mShippingOption; }; } // end of namespace dom } // end of namespace mozilla #endif