blob: eb582066248f7519ae1457d17cff81c7300c35d6 [file] [log] [blame]
// Copyright 2021 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 "content/public/test/test_aggregation_service.h"
#include <memory>
#include "content/test/test_aggregation_service_impl.h"
namespace content {
std::unique_ptr<TestAggregationService> TestAggregationService::Create(
const base::Clock* clock) {
return std::make_unique<TestAggregationServiceImpl>(clock);
}
} // namespace content