2017-10-27 01:08:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2017-05-25 20:50:32 +03:00
|
|
|
/* 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
|
|
|
|
|
2017-06-14 10:59:00 +03:00
|
|
|
PaymentActionRequest();
|
2017-05-25 20:50:32 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~PaymentActionRequest() = default;
|
|
|
|
|
|
|
|
nsString mRequestId;
|
|
|
|
uint32_t mType;
|
2017-06-14 10:59:00 +03:00
|
|
|
nsCOMPtr<nsIPaymentActionCallback> mCallback;
|
2017-05-25 20:50:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class PaymentCreateActionRequest final : public nsIPaymentCreateActionRequest
|
|
|
|
, public PaymentActionRequest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_NSIPAYMENTACTIONREQUEST(PaymentActionRequest::)
|
|
|
|
NS_DECL_NSIPAYMENTCREATEACTIONREQUEST
|
|
|
|
|
2017-06-14 10:59:00 +03:00
|
|
|
PaymentCreateActionRequest();
|
2017-05-25 20:50:32 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
~PaymentCreateActionRequest() = default;
|
|
|
|
|
|
|
|
uint64_t mTabId;
|
2017-08-23 09:26:51 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> mTopLevelPrincipal;
|
2017-05-25 20:50:32 +03:00
|
|
|
nsCOMPtr<nsIArray> mMethodData;
|
|
|
|
nsCOMPtr<nsIPaymentDetails> mDetails;
|
|
|
|
nsCOMPtr<nsIPaymentOptions> mOptions;
|
2018-04-14 04:47:20 +03:00
|
|
|
nsString mShippingOption;
|
2017-05-25 20:50:32 +03:00
|
|
|
};
|
|
|
|
|
2017-06-14 10:59:00 +03:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2017-06-23 12:15:51 +03:00
|
|
|
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<nsIPaymentDetails> mDetails;
|
2018-04-14 04:47:20 +03:00
|
|
|
nsString mShippingOption;
|
2017-06-23 12:15:51 +03:00
|
|
|
};
|
|
|
|
|
2017-05-25 20:50:32 +03:00
|
|
|
} // end of namespace dom
|
|
|
|
} // end of namespace mozilla
|
|
|
|
|
|
|
|
#endif
|