summaryrefslogtreecommitdiffstats
path: root/dom/payments/PaymentAddress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dom/payments/PaymentAddress.cpp')
-rw-r--r--dom/payments/PaymentAddress.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/dom/payments/PaymentAddress.cpp b/dom/payments/PaymentAddress.cpp
new file mode 100644
index 0000000000..86e3b446c7
--- /dev/null
+++ b/dom/payments/PaymentAddress.cpp
@@ -0,0 +1,87 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* 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/. */
+
+#include "mozilla/dom/PaymentAddress.h"
+#include "mozilla/dom/PaymentAddressBinding.h"
+
+namespace mozilla::dom {
+
+NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(PaymentAddress, mOwner)
+
+NS_IMPL_CYCLE_COLLECTING_ADDREF(PaymentAddress)
+NS_IMPL_CYCLE_COLLECTING_RELEASE(PaymentAddress)
+
+NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(PaymentAddress)
+ NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
+ NS_INTERFACE_MAP_ENTRY(nsISupports)
+NS_INTERFACE_MAP_END
+
+PaymentAddress::PaymentAddress(
+ nsPIDOMWindowInner* aWindow, const nsAString& aCountry,
+ const nsTArray<nsString>& aAddressLine, const nsAString& aRegion,
+ const nsAString& aRegionCode, const nsAString& aCity,
+ const nsAString& aDependentLocality, const nsAString& aPostalCode,
+ const nsAString& aSortingCode, const nsAString& aOrganization,
+ const nsAString& aRecipient, const nsAString& aPhone)
+ : mCountry(aCountry),
+ mAddressLine(aAddressLine.Clone()),
+ mRegion(aRegion),
+ mRegionCode(aRegionCode),
+ mCity(aCity),
+ mDependentLocality(aDependentLocality),
+ mPostalCode(aPostalCode),
+ mSortingCode(aSortingCode),
+ mOrganization(aOrganization),
+ mRecipient(aRecipient),
+ mPhone(aPhone),
+ mOwner(aWindow) {}
+
+void PaymentAddress::GetCountry(nsAString& aRetVal) const {
+ aRetVal = mCountry;
+}
+
+void PaymentAddress::GetAddressLine(nsTArray<nsString>& aRetVal) const {
+ aRetVal = mAddressLine.Clone();
+}
+
+void PaymentAddress::GetRegion(nsAString& aRetVal) const { aRetVal = mRegion; }
+
+void PaymentAddress::GetRegionCode(nsAString& aRetVal) const {
+ aRetVal = mRegionCode;
+}
+
+void PaymentAddress::GetCity(nsAString& aRetVal) const { aRetVal = mCity; }
+
+void PaymentAddress::GetDependentLocality(nsAString& aRetVal) const {
+ aRetVal = mDependentLocality;
+}
+
+void PaymentAddress::GetPostalCode(nsAString& aRetVal) const {
+ aRetVal = mPostalCode;
+}
+
+void PaymentAddress::GetSortingCode(nsAString& aRetVal) const {
+ aRetVal = mSortingCode;
+}
+
+void PaymentAddress::GetOrganization(nsAString& aRetVal) const {
+ aRetVal = mOrganization;
+}
+
+void PaymentAddress::GetRecipient(nsAString& aRetVal) const {
+ aRetVal = mRecipient;
+}
+
+void PaymentAddress::GetPhone(nsAString& aRetVal) const { aRetVal = mPhone; }
+
+PaymentAddress::~PaymentAddress() = default;
+
+JSObject* PaymentAddress::WrapObject(JSContext* aCx,
+ JS::Handle<JSObject*> aGivenProto) {
+ return PaymentAddress_Binding::Wrap(aCx, this, aGivenProto);
+}
+
+} // namespace mozilla::dom