blob: 9e6e09920d50cb5539fc4a4beacace447df80dc8 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/nearby_sharing/contacts/fake_nearby_share_contact_manager.h"
FakeNearbyShareContactManager::Factory::Factory() = default;
FakeNearbyShareContactManager::Factory::~Factory() = default;
std::unique_ptr<NearbyShareContactManager>
FakeNearbyShareContactManager::Factory::CreateInstance(
PrefService* pref_service,
NearbyShareClientFactory* http_client_factory,
NearbyShareLocalDeviceDataManager* local_device_data_manager) {
latest_pref_service_ = pref_service;
latest_http_client_factory_ = http_client_factory;
latest_local_device_data_manager_ = local_device_data_manager;
auto instance = std::make_unique<FakeNearbyShareContactManager>();
instances_.push_back(instance.get());
return instance;
}
FakeNearbyShareContactManager::FakeNearbyShareContactManager() = default;
FakeNearbyShareContactManager::~FakeNearbyShareContactManager() = default;
void FakeNearbyShareContactManager::DownloadContacts(
bool only_download_if_changed) {
download_contacts_calls_.push_back(only_download_if_changed);
}
void FakeNearbyShareContactManager::SetAllowedContacts(
const std::set<std::string>& allowed_contact_ids) {
set_allowed_contacts_calls_.push_back(allowed_contact_ids);
}
void FakeNearbyShareContactManager::OnStart() {}
void FakeNearbyShareContactManager::OnStop() {}