blob: 7eb8caab8dafef347a3455be945ea1bd566b8ee2 [file] [log] [blame]
// Copyright 2017 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 IOS_WEB_VIEW_INTERNAL_SIGNIN_WEB_VIEW_ACCOUNT_TRACKER_SERVICE_FACTORY_H_
#define IOS_WEB_VIEW_INTERNAL_SIGNIN_WEB_VIEW_ACCOUNT_TRACKER_SERVICE_FACTORY_H_
#include <memory>
#include "base/macros.h"
#include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
class AccountTrackerService;
namespace base {
template <typename T>
struct DefaultSingletonTraits;
} // namespace base
namespace ios_web_view {
class WebViewBrowserState;
// Singleton that owns all AccountTrackerServices and associates them with a
// browser state.
class WebViewAccountTrackerServiceFactory
: public BrowserStateKeyedServiceFactory {
public:
// Returns the instance of AccountTrackerService associated with this
// browser state (creating one if none exists). Returns nullptr if this
// browser state cannot have a AccountTrackerService (for example, if
// |browser_state| is incognito).
static AccountTrackerService* GetForBrowserState(
ios_web_view::WebViewBrowserState* browser_state);
// Returns the instance of the AccountTrackerServiceFactory singleton.
static WebViewAccountTrackerServiceFactory* GetInstance();
private:
friend struct base::DefaultSingletonTraits<
WebViewAccountTrackerServiceFactory>;
WebViewAccountTrackerServiceFactory();
~WebViewAccountTrackerServiceFactory() override = default;
// BrowserStateKeyedServiceFactory implementation.
void RegisterBrowserStatePrefs(
user_prefs::PrefRegistrySyncable* registry) override;
std::unique_ptr<KeyedService> BuildServiceInstanceFor(
web::BrowserState* context) const override;
DISALLOW_COPY_AND_ASSIGN(WebViewAccountTrackerServiceFactory);
};
} // namespace ios_web_view
#endif // IOS_WEB_VIEW_INTERNAL_SIGNIN_WEB_VIEW_ACCOUNT_TRACKER_SERVICE_FACTORY_H_