BasicCardPayment.h (1214B)
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/. */ 6 7 #ifndef mozilla_dom_BasicCardPayment_h 8 #define mozilla_dom_BasicCardPayment_h 9 10 #include "mozilla/dom/BasicCardPaymentBinding.h" 11 #include "nsPIDOMWindow.h" 12 #include "nsTArray.h" 13 14 namespace mozilla::dom { 15 16 class BasicCardService final { 17 public: 18 NS_INLINE_DECL_REFCOUNTING(BasicCardService) 19 20 static already_AddRefed<BasicCardService> GetService(); 21 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); 29 30 private: 31 BasicCardService() = default; 32 ~BasicCardService() = default; 33 }; 34 35 } // namespace mozilla::dom 36 37 #endif