#include "chrome/browser/sharing_hub/sharing_hub_service_factory.h"
#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sharing_hub/sharing_hub_service.h"
namespace sharing_hub {
SharingHubService* SharingHubServiceFactory::GetForProfile(Profile* profile) { … }
SharingHubServiceFactory* SharingHubServiceFactory::GetInstance() { … }
SharingHubServiceFactory::SharingHubServiceFactory()
: … { … }
SharingHubServiceFactory::~SharingHubServiceFactory() = default;
std::unique_ptr<KeyedService>
SharingHubServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
}