chromium/components/autofill/core/browser/payments/test_local_card_migration_manager.cc

// Copyright 2018 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/test_local_card_migration_manager.h"

#include "components/autofill/core/browser/metrics/autofill_metrics.h"
#include "components/autofill/core/browser/payments/payments_util.h"
#include "components/autofill/core/browser/test_payments_data_manager.h"
#include "components/autofill/core/common/autofill_payments_features.h"

namespace autofill {

TestLocalCardMigrationManager::~TestLocalCardMigrationManager() = default;

bool TestLocalCardMigrationManager::IsCreditCardMigrationEnabled() {}

bool TestLocalCardMigrationManager::LocalCardMigrationWasTriggered() {}

bool TestLocalCardMigrationManager::IntermediatePromptWasShown() {}

bool TestLocalCardMigrationManager::MainPromptWasShown() {}

void TestLocalCardMigrationManager::
    OnUserAcceptedIntermediateMigrationDialog() {}

void TestLocalCardMigrationManager::OnUserAcceptedMainMigrationDialog(
    const std::vector<std::string>& selected_cards) {}

void TestLocalCardMigrationManager::EnablePaymentsWalletSyncInTransportMode() {}

void TestLocalCardMigrationManager::OnDidGetUploadDetails(
    bool is_from_settings_page,
    payments::PaymentsAutofillClient::PaymentsRpcResult result,
    const std::u16string& context_token,
    std::unique_ptr<base::Value::Dict> legal_message,
    std::vector<std::pair<int, int>> supported_bin_ranges) {}

}  // namespace autofill