1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// Copyright 2024 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/autofill/core/browser/payments/payments_window_manager.h"
namespace autofill::payments {
PaymentsWindowManager::Vcn3dsAuthenticationResponse::
Vcn3dsAuthenticationResponse() = default;
PaymentsWindowManager::Vcn3dsAuthenticationResponse::
Vcn3dsAuthenticationResponse(
const PaymentsWindowManager::Vcn3dsAuthenticationResponse&) = default;
PaymentsWindowManager::Vcn3dsAuthenticationResponse::
Vcn3dsAuthenticationResponse(
PaymentsWindowManager::Vcn3dsAuthenticationResponse&&) = default;
PaymentsWindowManager::Vcn3dsAuthenticationResponse&
PaymentsWindowManager::Vcn3dsAuthenticationResponse::operator=(
const PaymentsWindowManager::Vcn3dsAuthenticationResponse&) = default;
PaymentsWindowManager::Vcn3dsAuthenticationResponse&
PaymentsWindowManager::Vcn3dsAuthenticationResponse::operator=(
PaymentsWindowManager::Vcn3dsAuthenticationResponse&&) = default;
PaymentsWindowManager::Vcn3dsAuthenticationResponse::
~Vcn3dsAuthenticationResponse() = default;
PaymentsWindowManager::Vcn3dsContext::Vcn3dsContext() = default;
PaymentsWindowManager::Vcn3dsContext::Vcn3dsContext(
PaymentsWindowManager::Vcn3dsContext&&) = default;
PaymentsWindowManager::Vcn3dsContext&
PaymentsWindowManager::Vcn3dsContext::operator=(
PaymentsWindowManager::Vcn3dsContext&&) = default;
PaymentsWindowManager::Vcn3dsContext::~Vcn3dsContext() = default;
PaymentsWindowManager::BnplContext::BnplContext() = default;
PaymentsWindowManager::BnplContext::BnplContext(
PaymentsWindowManager::BnplContext&&) = default;
PaymentsWindowManager::BnplContext&
PaymentsWindowManager::BnplContext::operator=(
PaymentsWindowManager::BnplContext&&) = default;
PaymentsWindowManager::BnplContext::~BnplContext() = default;
PaymentsWindowManager::FlowState::FlowState() = default;
PaymentsWindowManager::FlowState::FlowState(
PaymentsWindowManager::FlowState&&) = default;
PaymentsWindowManager::FlowState& PaymentsWindowManager::FlowState::operator=(
PaymentsWindowManager::FlowState&&) = default;
PaymentsWindowManager::FlowState::~FlowState() = default;
} // namespace autofill::payments
|