1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_BasicCardPayment_h
8 #define mozilla_dom_BasicCardPayment_h
10 #include "mozilla/dom/BasicCardPaymentBinding.h"
11 #include "nsPIDOMWindow.h"
14 namespace mozilla::dom
{
16 class BasicCardService final
{
18 NS_INLINE_DECL_REFCOUNTING(BasicCardService
)
20 static already_AddRefed
<BasicCardService
> GetService();
22 bool IsBasicCardPayment(const nsAString
& aSupportedMethods
);
23 bool IsValidBasicCardRequest(JSContext
* aCx
, JSObject
* aData
,
24 nsAString
& aErrorMsg
);
25 void CheckForValidBasicCardErrors(JSContext
* aCx
, JSObject
* aData
,
27 bool IsValidExpiryMonth(const nsAString
& aExpiryMonth
);
28 bool IsValidExpiryYear(const nsAString
& aExpiryYear
);
31 BasicCardService() = default;
32 ~BasicCardService() = default;
35 } // namespace mozilla::dom