Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / payments / BasicCardPayment.h
blobe7575f2024726c5c80c33b1e734daaa32fcccc7b
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"
12 #include "nsTArray.h"
14 namespace mozilla::dom {
16 class BasicCardService final {
17 public:
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,
26 ErrorResult& aRv);
27 bool IsValidExpiryMonth(const nsAString& aExpiryMonth);
28 bool IsValidExpiryYear(const nsAString& aExpiryYear);
30 private:
31 BasicCardService() = default;
32 ~BasicCardService() = default;
35 } // namespace mozilla::dom
37 #endif