blob: 6339994d33aa61e3e4411ec72c0c261596d4d5a7 [file] [log] [blame]
// Copyright 2020 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.
#ifndef CHROME_BROWSER_SSL_SCT_REPORTING_SERVICE_FACTORY_H_
#define CHROME_BROWSER_SSL_SCT_REPORTING_SERVICE_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace content {
class BrowserContext;
}
class SCTReportingService;
class SCTReportingServiceFactory : public BrowserContextKeyedServiceFactory {
public:
SCTReportingServiceFactory(const SCTReportingServiceFactory&) = delete;
const SCTReportingServiceFactory& operator=(
const SCTReportingServiceFactory&) = delete;
// Returns singleton instance of SCTReportingServiceFactory.
static SCTReportingServiceFactory* GetInstance();
// Returns the reporting service associated with |context|.
// TODO(crbug.com/1106798): Determine if we need to explicitly handle
// Incognito, or if relying on SBER is sufficient.
static SCTReportingService* GetForBrowserContext(
content::BrowserContext* context);
private:
friend struct base::DefaultSingletonTraits<SCTReportingServiceFactory>;
SCTReportingServiceFactory();
~SCTReportingServiceFactory() override;
// BrowserContextKeyedServiceFactory overrides:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
bool ServiceIsCreatedWithBrowserContext() const override;
};
#endif // CHROME_BROWSER_SSL_SCT_REPORTING_SERVICE_FACTORY_H_