blob: 0787889dd625cc3caab0ecd5619d91dc2089b4c4 [file] [log] [blame]
// 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 CHROME_BROWSER_ACCESSIBILITY_PAGE_COLORS_FACTORY_H_
#define CHROME_BROWSER_ACCESSIBILITY_PAGE_COLORS_FACTORY_H_
#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/pref_registry/pref_registry_syncable.h"
class Profile;
class PageColors;
// Factory to get or create an instance of PageColors from a Profile.
class PageColorsFactory : public ProfileKeyedServiceFactory {
public:
static PageColorsFactory* GetInstance();
static PageColors* GetForProfile(Profile* profile);
private:
friend base::NoDestructor<PageColorsFactory>;
PageColorsFactory();
~PageColorsFactory() override;
// BrowserContextKeyedServiceFactory:
std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const override;
bool ServiceIsCreatedWithBrowserContext() const override;
void RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) override;
};
#endif // CHROME_BROWSER_ACCESSIBILITY_PAGE_COLORS_FACTORY_H_