chromium/components/payments/core/payment_address.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/payments/core/payment_address.h"

#include "base/values.h"

namespace payments {

namespace {

// These are defined as part of the spec at:
// https://w3c.github.io/browser-payment-api/#paymentaddress-interface
static const char kAddressAddressLine[] =;
static const char kAddressCity[] =;
static const char kAddressCountry[] =;
static const char kAddressDependentLocality[] =;
static const char kAddressOrganization[] =;
static const char kAddressPhone[] =;
static const char kAddressPostalCode[] =;
static const char kAddressRecipient[] =;
static const char kAddressRegion[] =;
static const char kAddressSortingCode[] =;

}  // namespace

base::Value::Dict PaymentAddressToValueDict(
    const mojom::PaymentAddress& address) {}

}  // namespace payments