chromium/components/payments/core/test_payment_request_delegate.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/test_payment_request_delegate.h"

#include <utility>

#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/personal_data_manager.h"

namespace payments {

TestPaymentRequestDelegate::TestPaymentRequestDelegate(
    std::unique_ptr<base::SingleThreadTaskExecutor> task_executor,
    autofill::PersonalDataManager* personal_data_manager)
    :{}

TestPaymentRequestDelegate::~TestPaymentRequestDelegate() {}

autofill::PersonalDataManager*
TestPaymentRequestDelegate::GetPersonalDataManager() {}

const std::string& TestPaymentRequestDelegate::GetApplicationLocale() const {}

bool TestPaymentRequestDelegate::IsOffTheRecord() const {}

const GURL& TestPaymentRequestDelegate::GetLastCommittedURL() const {}

autofill::AddressNormalizer*
TestPaymentRequestDelegate::GetAddressNormalizer() {}

autofill::RegionDataLoader* TestPaymentRequestDelegate::GetRegionDataLoader() {}

ukm::UkmRecorder* TestPaymentRequestDelegate::GetUkmRecorder() {}

autofill::TestAddressNormalizer*
TestPaymentRequestDelegate::test_address_normalizer() {}

void TestPaymentRequestDelegate::DelayFullCardRequestCompletion() {}

void TestPaymentRequestDelegate::CompleteFullCardRequest() {}

std::string TestPaymentRequestDelegate::GetAuthenticatedEmail() const {}

PrefService* TestPaymentRequestDelegate::GetPrefService() {}

bool TestPaymentRequestDelegate::IsBrowserWindowActive() const {}

}  // namespace payments