Bug 1750871 - run mochitest-remote on fission everywhere. r=releng-reviewers,aki
[gecko.git] / dom / payments / BasicCardPayment.h
blob1698ca95d6f9d5a8bf21ef45705af59b5658a72e
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 {
15 namespace dom {
17 class BasicCardService final {
18 public:
19 NS_INLINE_DECL_REFCOUNTING(BasicCardService)
21 static already_AddRefed<BasicCardService> GetService();
23 bool IsBasicCardPayment(const nsAString& aSupportedMethods);
24 bool IsValidBasicCardRequest(JSContext* aCx, JSObject* aData,
25 nsAString& aErrorMsg);
26 void CheckForValidBasicCardErrors(JSContext* aCx, JSObject* aData,
27 ErrorResult& aRv);
28 bool IsValidExpiryMonth(const nsAString& aExpiryMonth);
29 bool IsValidExpiryYear(const nsAString& aExpiryYear);
31 private:
32 BasicCardService() = default;
33 ~BasicCardService() = default;
36 } // end of namespace dom
37 } // end of namespace mozilla
39 #endif