// 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_options.h" #include "base/values.h" namespace payments { PaymentOptions::PaymentOptions() : … { … } PaymentOptions::~PaymentOptions() = default; bool PaymentOptions::operator==(const PaymentOptions& other) const { … } bool PaymentOptions::operator!=(const PaymentOptions& other) const { … } } // namespace payments