chromium/components/payments/content/test_payment_app.cc

// Copyright 2022 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/content/test_payment_app.h"

namespace payments {

TestPaymentApp::TestPaymentApp(const std::string& method)
    :{}

TestPaymentApp::~TestPaymentApp() {}

void TestPaymentApp::InvokePaymentApp(
    base::WeakPtr<PaymentApp::Delegate> delegate) {}

bool TestPaymentApp::IsCompleteForPayment() const {}
bool TestPaymentApp::CanPreselect() const {}
std::u16string TestPaymentApp::GetMissingInfoLabel() const {}
bool TestPaymentApp::HasEnrolledInstrument() const {}
void TestPaymentApp::RecordUse() {}
bool TestPaymentApp::NeedsInstallation() const {}
std::string TestPaymentApp::GetId() const {}
std::u16string TestPaymentApp::GetLabel() const {}
std::u16string TestPaymentApp::GetSublabel() const {}
bool TestPaymentApp::IsValidForModifier(const std::string& method) const {}
base::WeakPtr<PaymentApp> TestPaymentApp::AsWeakPtr() {}
bool TestPaymentApp::HandlesShippingAddress() const {}
bool TestPaymentApp::HandlesPayerName() const {}
bool TestPaymentApp::HandlesPayerEmail() const {}
bool TestPaymentApp::HandlesPayerPhone() const {}

}  // namespace payments