chromium/content/test/test_aggregation_service_impl.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_TEST_TEST_AGGREGATION_SERVICE_IMPL_H_
#define CONTENT_TEST_TEST_AGGREGATION_SERVICE_IMPL_H_

#include <memory>
#include <vector>

#include "base/functional/callback_forward.h"
#include "base/memory/raw_ref.h"
#include "base/threading/sequence_bound.h"
#include "content/browser/aggregation_service/aggregation_service_storage_context.h"
#include "content/public/test/test_aggregation_service.h"

namespace base {
class Clock;
}  // namespace base

namespace content {

class AggregatableReportSender;
class AggregatableReportAssembler;
class AggregationServiceStorage;

struct PublicKey;

// Implementation class of a test aggregation service.
class TestAggregationServiceImpl : public AggregationServiceStorageContext,
                                   public TestAggregationService {};

}  // namespace content

#endif  // CONTENT_TEST_TEST_AGGREGATION_SERVICE_IMPL_H_