// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_DISCOVER_FEED_DISCOVER_FEED_API_H_
#define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_DISCOVER_FEED_DISCOVER_FEED_API_H_
#include <memory>
#include "ios/chrome/browser/discover_feed/model/discover_feed_configuration.h"
#include "ios/chrome/browser/discover_feed/model/discover_feed_service.h"
namespace ios {
namespace provider {
// Creates a new instance of DiscoverFeedService.
std::unique_ptr<DiscoverFeedService> CreateDiscoverFeedService(
DiscoverFeedConfiguration* configuration);
} // namespace provider
} // namespace ios
#endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_DISCOVER_FEED_DISCOVER_FEED_API_H_