#include "components/sync_user_events/fake_user_event_service.h"
UserEventSpecifics;
namespace syncer {
FakeUserEventService::FakeUserEventService()
: … { … }
FakeUserEventService::~FakeUserEventService() = default;
void FakeUserEventService::RecordUserEvent(
std::unique_ptr<UserEventSpecifics> specifics) { … }
void FakeUserEventService::RecordUserEvent(
const UserEventSpecifics& specifics) { … }
base::WeakPtr<syncer::DataTypeControllerDelegate>
FakeUserEventService::GetControllerDelegate() { … }
const std::vector<UserEventSpecifics>&
FakeUserEventService::GetRecordedUserEvents() const { … }
}